  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5EDD4;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --white: #FAFAF8;
    --off-white: #F0EDE6;
    --muted: #8A8680;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 64px;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.96);
    padding: 18px 64px;
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500;
    color: var(--white); letter-spacing: 0.08em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-toggle { display: none; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 300;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.8); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-size: 10px; font-weight: 300;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border: 0.5px solid var(--gold);
    padding: 10px 24px;
    transition: background 0.25s, color 0.25s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* HERO */
  .hero {
    height: 100vh;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px),
      repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px);
  }
  .hero-accent-line {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 5px; background: var(--gold);
  }
  .hero-content {
    text-align: center; position: relative; z-index: 2;
    animation: fadeUp 1.2s ease both;
  }
  .hero-tag {
    font-size: 10px; font-weight: 300; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 28px; display: block;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 300; line-height: 1;
    color: var(--white);
    letter-spacing: -0.01em;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
    display: block;
  }
  .hero-sub {
    font-size: 11px; font-weight: 200; letter-spacing: 0.25em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-top: 24px;
  }
  .hero-divider {
    width: 1px; height: 60px; background: var(--gold);
    margin: 36px auto;
    animation: growDown 1s ease 0.8s both;
  }
  .hero-btn {
    display: inline-block;
    font-size: 10px; font-weight: 300; letter-spacing: 0.25em;
    text-transform: uppercase; text-decoration: none;
    color: var(--black); background: var(--gold);
    padding: 15px 44px;
    transition: background 0.25s, transform 0.2s;
  }
  .hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  }
  .hero-scroll-line {
    width: 1px; height: 40px; background: var(--gold);
    animation: pulse 2s ease infinite;
  }

  /* MARQUEE STRIP */
  .marquee-strip {
    background: var(--gold);
    padding: 14px 0; overflow: hidden;
  }
  .marquee-inner {
    display: flex; gap: 0;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-size: 10px; font-weight: 300; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--black);
    padding: 0 40px;
    flex-shrink: 0;
  }
  .marquee-dot { color: var(--charcoal); opacity: 0.5; }

  /* ABOUT */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 85vh;
  }
  .about-image-col {
    background: var(--charcoal);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
  }
  .nail-icon {
    width: 120px; height: 180px;
    border: 0.5px solid var(--gold);
    border-radius: 60px 60px 30px 30px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .nail-icon::before {
    content: '';
    position: absolute; top: 20px;
    width: 80px; height: 110px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.3), rgba(201,168,76,0.05));
    border-radius: 40px 40px 20px 20px;
  }
  .about-image-label {
    font-size: 9px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold);
  }
  .about-badge {
    position: absolute; bottom: 40px; right: 40px;
    width: 110px; height: 110px;
    border: 0.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    background: var(--charcoal);
  }
  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .about-badge-label {
    font-size: 8px; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }
  .about-content {
    padding: 100px 80px;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--off-white);
  }
  .section-tag {
    font-size: 9px; font-weight: 300; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
  }
  .section-tag::before {
    content: ''; display: block;
    width: 40px; height: 0.5px; background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; line-height: 1.15;
    color: var(--black); margin-bottom: 28px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 13px; font-weight: 200; line-height: 1.9;
    color: var(--muted); max-width: 420px;
    margin-bottom: 40px;
  }
  .stats-row { display: flex; gap: 48px; margin-bottom: 44px; }
  .stat-item {}
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300; color: var(--black);
    line-height: 1;
  }
  .stat-num span { color: var(--gold); }
  .stat-label {
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--muted); margin-top: 6px;
  }
  .btn-outline {
    display: inline-block;
    font-size: 10px; font-weight: 300; letter-spacing: 0.2em;
    text-transform: uppercase; text-decoration: none;
    color: var(--black); border: 0.5px solid var(--black);
    padding: 14px 40px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
  }
  .btn-outline:hover { background: var(--black); color: var(--white); }
  .btn-gold {
    display: inline-block;
    font-size: 10px; font-weight: 300; letter-spacing: 0.2em;
    text-transform: uppercase; text-decoration: none;
    color: var(--black); background: var(--gold);
    padding: 14px 40px;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-gold:hover { background: var(--gold-light); }

  /* SERVICES */
  .services { padding: 120px 64px; background: var(--white); }
  .section-header { text-align: center; margin-bottom: 80px; }
  .section-header .section-tag {
    justify-content: center;
  }
  .section-header .section-tag::before { display: none; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: rgba(0,0,0,0.08);
    border: 0.5px solid rgba(0,0,0,0.08);
  }
  .service-card {
    background: var(--white);
    padding: 56px 44px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: pointer;
  }
  .service-card:hover { background: var(--charcoal); }
  .service-card:hover .service-title,
  .service-card:hover .service-price { color: var(--white); }
  .service-card:hover .service-desc { color: rgba(255,255,255,0.5); }
  .service-card:hover .service-num { color: rgba(201,168,76,0.15); }
  .service-card:hover .service-tag { color: var(--gold); }
  .service-card:hover .service-icon { border-color: var(--gold); color: var(--gold); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; font-weight: 300;
    color: rgba(0,0,0,0.05); line-height: 1;
    position: absolute; top: 20px; right: 24px;
    transition: color 0.3s;
  }
  .service-icon {
    width: 48px; height: 48px;
    border: 0.5px solid rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--muted);
    margin-bottom: 28px;
    transition: border-color 0.3s, color 0.3s;
  }
  .service-tag {
    font-size: 9px; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 12px; display: block;
    transition: color 0.3s;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400;
    color: var(--black); margin-bottom: 14px;
    transition: color 0.3s;
  }
  .service-desc {
    font-size: 12px; font-weight: 200; line-height: 1.8;
    color: var(--muted); margin-bottom: 28px;
    transition: color 0.3s;
  }
  .service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    color: var(--black);
    transition: color 0.3s;
  }
  .service-price small {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px; font-weight: 300; letter-spacing: 0.1em;
    color: var(--muted); margin-left: 4px;
  }

  /* FEATURED STRIP */
  .featured-strip {
    background: var(--charcoal);
    padding: 100px 64px;
    display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0; position: relative;
  }
  .featured-strip::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
  }
  .strip-divider { background: rgba(255,255,255,0.1); }
  .strip-item {
    text-align: center; padding: 0 60px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }
  .strip-icon {
    width: 56px; height: 56px;
    border: 0.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gold);
  }
  .strip-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: var(--white);
  }
  .strip-desc {
    font-size: 11px; font-weight: 200; letter-spacing: 0.05em;
    line-height: 1.8; color: rgba(255,255,255,0.45);
  }

  /* PRICING */
  .pricing { padding: 120px 64px; background: var(--off-white); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }
  .pricing-card {
    background: var(--white);
    border: 0.5px solid rgba(0,0,0,0.1);
    padding: 56px 44px;
    position: relative; transition: transform 0.25s, box-shadow 0.25s;
  }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-card.featured {
    background: var(--charcoal);
    border-color: var(--gold);
  }
  .pricing-card.featured .pricing-name,
  .pricing-card.featured .pricing-amount { color: var(--white); }
  .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.45); }
  .pricing-card.featured .pricing-item { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
  .pricing-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--black); padding: 6px 20px;
  }
  .pricing-name {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 20px;
  }
  .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: var(--black);
    line-height: 1;
  }
  .pricing-amount small {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px; color: var(--gold); margin-right: 4px;
  }
  .pricing-desc {
    font-size: 11px; font-weight: 200; line-height: 1.8;
    color: var(--muted); margin: 16px 0 32px;
  }
  .pricing-items { list-style: none; margin-bottom: 44px; }
  .pricing-item {
    font-size: 12px; font-weight: 200; letter-spacing: 0.05em;
    color: var(--charcoal); padding: 12px 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 12px;
  }
  .pricing-item::before {
    content: ''; display: block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* GALLERY */
  .gallery { padding: 120px 0 0; background: var(--white); }
  .gallery-header { padding: 0 64px; margin-bottom: 60px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 3px;
  }
  .gallery-cell {
    background: var(--charcoal);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-cell.tall { grid-row: span 2; }
  .gallery-cell-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background-position: center;
    background-size: cover;
  }
  .gallery-cell-bg[style*="background-image"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.45);
  }
  .gallery-inner {
    width: 70%; height: 70%;
    border: 0.5px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
    position: relative;
    z-index: 1;
  }
  .gallery-symbol {
    color: rgba(201,168,76,0.45);
    font-size: 28px;
  }
  .gallery-label {
    font-size: 9px; letter-spacing: 0.35em;
    text-transform: uppercase; color: rgba(201,168,76,0.6);
  }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex; align-items: flex-end;
    padding: 24px; opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-cell:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 300; color: var(--white);
  }
  /* Different BG tints for gallery cells */
  .gc1 { background: #1e1c18; }
  .gc2 { background: #16181e; }
  .gc3 { background: #1a1818; }
  .gc4 { background: #181e1a; }
  .gc5 { background: #1e1a16; }

  /* TESTIMONIALS */
  .testimonials { padding: 120px 64px; background: var(--charcoal); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 70px;
  }
  .testimonial-card {
    padding: 44px 36px;
    border: 0.5px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; color: var(--gold); opacity: 0.25;
    position: absolute; top: 16px; left: 28px;
    line-height: 1;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 300; font-style: italic;
    line-height: 1.7; color: rgba(255,255,255,0.75);
    margin-bottom: 32px; margin-top: 40px;
  }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 0.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; color: var(--gold);
  }
  .testimonial-name {
    font-size: 12px; font-weight: 300; letter-spacing: 0.1em;
    color: var(--white);
  }
  .testimonial-role {
    font-size: 10px; letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35); margin-top: 3px;
  }
  .stars { color: var(--gold); font-size: 12px; margin-bottom: 8px; }

  /* BOOKING CTA */
  .booking {
    padding: 140px 64px;
    background: var(--gold-pale);
    text-align: center; position: relative; overflow: hidden;
  }
  .booking::before {
    content: 'BOOK';
    font-family: 'Cormorant Garamond', serif;
    font-size: 220px; font-weight: 300;
    color: rgba(201,168,76,0.1); line-height: 1;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
  }
  .booking-tag {
    font-size: 9px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px; display: block;
  }
  .booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 300; color: var(--black);
    line-height: 1.1; margin-bottom: 20px;
  }
  .booking-title em { font-style: italic; color: var(--gold); }
  .booking-sub {
    font-size: 12px; font-weight: 200; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 56px;
  }
  .booking-form {
    display: flex; gap: 0; max-width: 560px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 760px;
  }
  .booking-input {
    flex: 1; padding: 16px 24px;
    background: var(--white); border: 0.5px solid rgba(0,0,0,0.15);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px; font-weight: 200; letter-spacing: 0.08em;
    color: var(--black); outline: none;
  }
  select.booking-input {
    appearance: none;
  }
  .booking-message {
    grid-column: 1 / -1;
    min-height: 110px;
    resize: vertical;
  }
  .booking-input::placeholder { color: var(--muted); }
  .booking-submit {
    padding: 16px 36px;
    background: var(--black); color: var(--white);
    border: none; cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px; font-weight: 300; letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.25s;
  }
  .booking-submit:hover { background: var(--charcoal); }
  .booking-form-grid .booking-submit {
    grid-column: 1 / -1;
  }
  .booking-notice {
    background: var(--white);
    color: var(--black);
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    margin: 0 0 22px;
    padding: 12px 18px;
    position: relative;
    z-index: 1;
  }
  .booking-notice-success {
    border-left: 3px solid var(--gold);
  }
  .booking-call {
    color: var(--muted);
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.08em;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .booking-call a {
    color: var(--black);
    font-weight: 400;
    text-decoration: none;
  }

  /* FOOTER */
  footer {
    background: var(--black);
    padding: 80px 64px 40px;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px; padding-bottom: 64px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }
  .footer-brand {}
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; color: var(--white);
    letter-spacing: 0.05em; margin-bottom: 20px; display: block;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline {
    font-size: 11px; font-weight: 200; line-height: 1.8;
    color: rgba(255,255,255,0.4); max-width: 280px;
  }
  .footer-socials { display: flex; gap: 12px; margin-top: 28px; }
  .footer-social {
    width: 36px; height: 36px;
    border: 0.5px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-social:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title {
    font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 12px; font-weight: 200; letter-spacing: 0.05em;
    color: rgba(255,255,255,0.45); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
  }
  .footer-copy {
    font-size: 10px; font-weight: 200; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
  }
  .footer-copy span { color: var(--gold); }
  .footer-legal { display: flex; gap: 32px; }
  .footer-legal a {
    font-size: 10px; font-weight: 200; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--white); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes growDown {
    from { height: 0; }
    to { height: 60px; }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.35s; }

  .admin-bar nav {
    top: 32px;
  }

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

  .content-page {
    min-height: 60vh;
    padding: 160px 64px 100px;
    background: var(--off-white);
  }

  .content-wrap {
    max-width: 900px;
    margin: 0 auto;
  }

  .content-card {
    padding: 36px 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.12);
  }

  .content-title,
  .content-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--black);
    line-height: 1.15;
  }

  .content-title {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 28px;
  }

  .content-card-title {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .content-title a,
  .content-card-title a {
    color: inherit;
    text-decoration: none;
  }

  .content-body {
    font-size: 15px;
    font-weight: 200;
    line-height: 1.9;
    color: var(--charcoal);
  }

  .content-body p,
  .content-body ul,
  .content-body ol,
  .content-body blockquote,
  .content-body table {
    margin-bottom: 22px;
  }

  .content-body a {
    color: var(--black);
    text-decoration-color: var(--gold);
    text-underline-offset: 4px;
  }

  .content-meta {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 28px;
    text-transform: uppercase;
  }

  .elementor-full-width,
  .subinas-elementor-page .content-page {
    padding: 0;
  }

  .elementor-full-width {
    background: var(--white);
  }

  .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .woocommerce-page .site-main,
  .woocommerce .site-main {
    background: var(--off-white);
    padding: 160px 64px 100px;
  }

  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    background: var(--black);
    border-radius: 0;
    color: var(--white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce #respond input#submit:hover {
    background: var(--gold);
    color: var(--black);
  }

  @media (max-width: 1100px) {
    nav {
      padding: 22px 32px;
    }

    nav.scrolled {
      padding: 16px 32px;
    }

    .nav-links {
      gap: 22px;
    }

    .about {
      grid-template-columns: 1fr;
    }

    .about-image-col {
      min-height: 520px;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .featured-strip {
      grid-template-columns: 1fr;
      gap: 44px;
    }

    .strip-divider {
      display: none;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 782px) {
    .admin-bar nav {
      top: 46px;
    }
  }

  @media (max-width: 760px) {
    nav {
      align-items: center;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 18px;
      padding: 18px 22px;
      background: rgba(10,10,10,0.96);
    }

    nav.scrolled {
      padding: 16px 22px;
    }

    .nav-toggle {
      background: transparent;
      border: 0.5px solid rgba(255,255,255,0.2);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-left: auto;
      padding: 10px;
    }

    .nav-toggle span:not(.screen-reader-text) {
      background: var(--gold);
      display: block;
      height: 1px;
      width: 22px;
    }

    .nav-links {
      display: none;
      flex-basis: 100%;
      flex-direction: column;
      gap: 16px;
      padding-top: 8px;
      width: 100%;
    }

    nav.nav-open .nav-links {
      display: flex;
    }

    .nav-cta {
      padding: 9px 18px;
    }

    .hero {
      min-height: 760px;
      height: auto;
      padding: 190px 22px 120px;
    }

    .hero-title {
      font-size: clamp(50px, 16vw, 78px);
    }

    .hero-sub {
      line-height: 1.8;
    }

    .about-content,
    .services,
    .pricing,
    .testimonials,
    .booking,
    footer,
    .content-page {
      padding-left: 22px;
      padding-right: 22px;
    }

    .about-content,
    .services,
    .pricing,
    .testimonials {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .stats-row {
      flex-direction: column;
      gap: 24px;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .footer-top {
      grid-template-columns: 1fr;
    }

    .service-card,
    .pricing-card {
      padding: 42px 28px;
    }

    .gallery-header {
      padding: 0 22px;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: none;
    }

    .gallery-cell,
    .gallery-cell.tall {
      min-height: 280px;
      grid-row: auto;
    }

    .featured-strip {
      padding: 72px 22px;
    }

    .strip-item {
      padding: 0;
    }

    .booking {
      padding-top: 90px;
      padding-bottom: 90px;
    }

    .booking::before {
      font-size: 120px;
    }

    .booking-form {
      flex-direction: column;
    }

    .booking-form-grid {
      display: flex;
      max-width: 100%;
    }

    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
      gap: 18px;
    }

    .content-page {
      padding-top: 210px;
      padding-bottom: 80px;
    }
  }
