*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #FDF6F7;
    --warm-white: #FEF9FA;
    --blush: #F2D9DE;
    --rose: #C9899A;
    --deep-rose: #9E5A6D;
    --mocha: #4A2535;
    --gold: #D4A8B4;
    --gold-light: #F7E8EC;
    --text-main: #2E1520;
    --text-muted: #7D5B66;
    --text-light: #B48F9A;
    --border: rgba(190,140,155,0.2);
    --border-strong: rgba(158,90,109,0.28);
  }

  html { scroll-behavior: smooth; }

  /* Offset anchor scroll targets so fixed nav doesn't cover them */
  #about, #locations, #franchise, #contact {
    scroll-margin-top: 140px;
  }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 48px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fadfe1;
    border-bottom: none;
    transition: padding 0.3s ease;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
  }

  .nav-logo img {
    height: auto;
    width: 55%;
    max-width: 640px;
    display: block;
  }

  @media (max-width: 900px) {
    .nav-logo {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: auto;
    }
    .nav-logo img {
      height: 70px;
      width: auto;
      max-width: 70vw;
    }
  }

  .nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7D5B66;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #4A2535; }

  .nav-cta {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--deep-rose);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--mocha); }

  .nav-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    position: relative;
  }

  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.35);
    border: 0.5px solid rgba(125,91,102,0.3);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #7D5B66;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
  }

  .lang-toggle:hover {
    background: rgba(255,255,255,0.6);
    color: #4A2535;
    border-color: rgba(125,91,102,0.5);
  }

  .lang-flag { font-size: 12px; line-height: 1; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .hero-text {
    padding: 240px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 0.5px;
    background: var(--rose);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 1.1;
    color: var(--mocha);
    margin-bottom: 32px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--rose);
  }

  .hero-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 380px;
    margin-bottom: 52px;
    line-height: 1.8;
  }

  .btn-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--deep-rose);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--mocha);
    transform: translateY(-1px);
  }

  .btn-ghost {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--deep-rose);
    border-bottom: 1px solid var(--rose);
    padding-bottom: 2px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover { color: var(--mocha); border-color: var(--mocha); }

  .hero-image {
    position: relative;
    overflow: hidden;
    background: var(--gold-light);
    padding-top: 160px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(1.08) contrast(1.05) saturate(1.1);
  }

  .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,144,126,0.12) 0%, transparent 60%);
  }

  /* ─── STRIP ─── */
  .strip {
    background: var(--mocha);
    padding: 0;
    display: flex;
    gap: 0;
    align-items: center;
    overflow: hidden;
    justify-content: flex-start;
  }

  .strip:hover .strip-track { animation-play-state: paused; }

  .strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #F2D9DE;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .strip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .strip-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: marquee 22s linear infinite;
    padding: 18px 0;
  }

  /* ─── SECTION HEADER ─── */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 18px;
    display: block;
  }

  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(38px, 4vw, 56px);
    color: var(--mocha);
    line-height: 1.1;
  }

  .section-header h2 em { font-style: italic; }

  .section-header p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  /* ─── ABOUT ─── */
  .about {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .about-image {
    position: relative;
  }

  .about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--blush);
    z-index: -1;
  }

  .about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--mocha);
    color: var(--blush);
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
  }

  .about-badge .label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
    color: var(--blush);
    opacity: 0.7;
  }

  .about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 50px;
    line-height: 1.1;
    color: var(--mocha);
    margin-bottom: 28px;
  }

  .about-content h2 em { font-style: italic; color: var(--rose); }

  .about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pillar {
    padding: 20px;
    border: 0.5px solid var(--border-strong);
    background: var(--warm-white);
  }

  .pillar-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    color: var(--rose);
  }

  .pillar h4 {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mocha);
    margin-bottom: 6px;
    font-weight: 500;
  }

  .pillar p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
  }

  /* ─── LOCATIONS ─── */
  .locations-section {
    padding: 120px 60px;
    background: var(--warm-white);
  }

  .locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .location-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    group: true;
  }

  .location-card-img {
    height: 260px;
    overflow: hidden;
    background: var(--gold-light);
  }

  .location-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
    display: block;
    filter: brightness(1.06) contrast(1.05) saturate(1.08);
  }

  .location-card:hover .location-card-img img {
    transform: scale(1.05);
  }

  .location-card-body {
    padding: 32px 28px;
    border-bottom: 0.5px solid var(--border);
    border-left: 0.5px solid var(--border);
    border-right: 0.5px solid var(--border);
    background: var(--warm-white);
    transition: background 0.2s;
  }

  .location-card:hover .location-card-body {
    background: var(--cream);
  }

  .location-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 26px;
    color: var(--mocha);
    margin-bottom: 6px;
  }

  .location-address {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .location-phone {
    font-size: 13px;
    color: var(--rose);
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
  }

  .location-link {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--deep-rose);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.2s;
  }

  .location-link:hover { gap: 14px; }

  .location-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--mocha);
    color: var(--blush);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
  }

  .location-card-coming {
    border: 1.5px dashed var(--border-strong);
  }

  .location-card-coming .location-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
  }

  /* ─── FRANCHISE ─── */
  .franchise {
    padding: 120px 60px;
    background: var(--mocha);
    position: relative;
    overflow: hidden;
  }

  .franchise::before {
    content: 'BLISS';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 300px;
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.1em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }

  .franchise-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .franchise h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 54px;
    line-height: 1.1;
    color: var(--warm-white);
    margin-bottom: 28px;
  }

  .franchise h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .franchise p {
    color: rgba(250,248,244,0.65);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .franchise-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: 20px;
    border-bottom: 0.5px solid rgba(196,168,130,0.4);
    padding-bottom: 4px;
    transition: gap 0.2s, border-color 0.2s;
  }

  .franchise-link:hover { gap: 18px; border-color: var(--gold); }

  .franchise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-box {
    background: rgba(255,255,255,0.05);
    padding: 40px 36px;
    border: 0.5px solid rgba(255,255,255,0.08);
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.5);
  }

  /* ─── CONTACT ─── */
  .contact-section {
    padding: 120px 60px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-form {
    margin-top: 60px;
    text-align: left;
    display: grid;
    gap: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    background: var(--warm-white);
    border: 0.5px solid var(--border-strong);
    padding: 14px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    font-weight: 300;
  }

  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--rose);
  }

  .form-field textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-submit {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--deep-rose);
    border: none;
    padding: 18px 48px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--mocha);
    transform: translateY(-1px);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--mocha);
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }

  .footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 24px;
    color: var(--warm-white);
    margin-bottom: 16px;
    display: block;
    letter-spacing: 0.05em;
  }

  .footer-brand .logo span { color: var(--rose); }

  .footer-brand p {
    font-size: 13px;
    color: rgba(250,248,244,0.45);
    line-height: 1.8;
    max-width: 260px;
  }

  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul a {
    font-size: 13px;
    color: rgba(250,248,244,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--blush); }

  .footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 12px;
    color: rgba(250,248,244,0.3);
    letter-spacing: 0.06em;
  }

  .social-links {
    display: flex;
    gap: 20px;
  }

  .social-links a {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  .social-links a:hover { color: var(--blush); }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #7D5B66;
    transition: all 0.25s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-text > * {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.25s; }
  .hero-sub { animation-delay: 0.4s; }
  .btn-group { animation-delay: 0.55s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    /* Nav */
    nav { padding: 18px 20px; }
    nav { position: fixed; padding: 0 16px; min-height: 80px; }
    .nav-bottom-row { position: static; }
    .nav-links { display: none; }
    .lang-toggle { right: 16px; font-size: 9px; padding: 0; width: 32px; height: 32px; justify-content: center; border-radius: 4px; }
    .lang-toggle .lang-label { display: none; }
    .lang-flag { font-size: 20px; }
    .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: #fadfe1; padding: 10px 0 18px; z-index: 200; }
    .nav-links.open li a { display: block; padding: 12px 24px; font-size: 14px; letter-spacing: 0.12em; border-bottom: 0.5px solid rgba(125,91,102,0.12); }
    .hamburger { display: flex; }
    .lang-toggle { padding: 7px 12px; font-size: 11px; }

    /* Hero */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-sub { margin-bottom: 28px; }
    .hero-text { padding: 160px 20px 32px; }
    .hero h1 { font-size: 42px; }
    .hero-sub { font-size: 14px; max-width: 100%; }
    .hero-image { display: none; }
    .btn-group { flex-direction: column; align-items: flex-start; gap: 14px; }
    .btn-primary { width: 100%; text-align: center; padding: 16px 24px; }

    /* Strip */
    .strip-track { gap: 40px; padding: 10px 0; }

    /* About */
    .about { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px; }
    .about-image::before { display: none; }
    .about-badge { display: none; }
    .about-image img { height: 220px; }
    .about-content h2 { font-size: 36px; }
    .about-pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
    .pillar { padding: 16px; }

    /* Section headers */
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 34px; }
    .section-header p { font-size: 14px; }

    /* Locations */
    .locations-section { padding: 40px 20px; }
    .locations-grid { grid-template-columns: 1fr; gap: 2px; }
    .location-card-img { height: 220px; }

    /* Franchise */
    .franchise { padding: 40px 20px; }
    .franchise-inner { grid-template-columns: 1fr; gap: 48px; }
    .franchise h2 { font-size: 38px; }
    .franchise-stats { grid-template-columns: 1fr 1fr; }
    .stat-box { padding: 28px 20px; }
    .stat-num { font-size: 42px; }

    /* Contact */
    .contact-section { padding: 40px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { width: 100%; }

    /* Footer */
    footer { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 10px; text-align: center; }
    .social-links { justify-content: center; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 34px; }
    .about-pillars { grid-template-columns: 1fr; }
    .franchise-stats { grid-template-columns: 1fr 1fr; }
    .section-header h2 { font-size: 28px; }
    .about-content h2 { font-size: 30px; }
    .franchise h2 { font-size: 32px; }
    .location-name { font-size: 22px; }
  }