/* class and id selectors
 * class selector: .className
 * id selector: #idName
 * body selector: body
 */


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

    :root {
      --cream: #FDF6EE;
      --blush: #F2C4B0;
      --rose: #D98C7E;
      --deep-rose: #A85C50;
      --sage: #8BAF8D;
      --warm-brown: #5C3D2E;
      --soft-white: #FFFAF6;
      --muted: #9A8880;
      --text: #3A2820;
      --nav-h: 72px;

      /* ── GOLD ACCENTS ── */
      --gold: #E8B84B;
      --gold-light: #F5D78A;
      --gold-deep: #B8892A;
      --gold-muted: rgba(232, 184, 75, 0.15);

      /* ── SEMANTIC ALIASES (light mode defaults) ── */
      --bg: var(--soft-white);
      --bg-surface: var(--cream);
      --bg-card: var(--soft-white);
      --color-text: var(--text);
      --color-muted: var(--muted);
      --color-heading: var(--warm-brown);
      --nav-bg: rgba(253, 246, 238, 0.92);
      --border-color: rgba(217, 140, 126, 0.18);
      --card-border: rgba(217, 140, 126, 0.15);
      --input-bg: var(--cream);
      --input-border: rgba(217, 140, 126, 0.25);
      --hamburger-color: var(--warm-brown);
    }

    /* ── DARK MODE ── */
    [data-theme="dark"] {
      --bg: #1A1008;
      --bg-surface: #231810;
      --bg-card: #2C1E12;
      --cream: #2C1E12;
      --soft-white: #1A1008;
      --color-text: #F0E4D4;
      --color-muted: #9A8272;
      --color-heading: #F0E4D4;
      --warm-brown: #F0E4D4;
      --text: #F0E4D4;
      --muted: #9A8272;
      --nav-bg: rgba(26, 16, 8, 0.93);
      --border-color: rgba(232, 184, 75, 0.12);
      --card-border: rgba(232, 184, 75, 0.1);
      --input-bg: #2C1E12;
      --input-border: rgba(232, 184, 75, 0.18);
      --hamburger-color: #F0E4D4;
      --blush: #C4845A;
      --rose: #E8A882;
      --deep-rose: #D4886A;
      --sage: #6A9A6C;
    }

    /* ── THEME TOGGLE BUTTON ── */
    .theme-toggle {
      background: none;
      border: 1.5px solid var(--border-color);
      border-color: rgba(217,140,126,0.3);
      border-radius: 50%;
      width: 36px; height: 36px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--warm-brown);
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .theme-toggle:hover { background: var(--gold-muted); border-color: var(--gold); color: var(--gold-deep); }
    .theme-toggle svg { width: 16px; height: 16px; }
    .theme-toggle .icon-moon { display: none; }
    [data-theme="dark"] .theme-toggle .icon-sun { display: none; }
    [data-theme="dark"] .theme-toggle .icon-moon { display: block; }
    [data-theme="dark"] .theme-toggle { color: var(--gold-light); border-color: rgba(232,184,75,0.3); }
    [data-theme="dark"] .theme-toggle:hover { background: rgba(232,184,75,0.1); border-color: var(--gold); }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--color-text);
      overflow-x: hidden;
      transition: background 0.3s, color 0.3s;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: var(--nav-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      transition: box-shadow 0.3s, background 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 30px rgba(90, 40, 30, 0.12); }
    [data-theme="dark"] nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 600;
      color: var(--color-heading);
      letter-spacing: 0.01em;
      text-decoration: none;
      line-height: 1.2;
    }
    .logo span { color: var(--rose); font-style: italic; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-heading);
      text-decoration: none;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-book {
      background: var(--rose);
      color: #fff !important;
      padding: 0.45rem 1.2rem;
      border-radius: 50px;
      font-weight: 500 !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-book::after { display: none !important; }
    .nav-book:hover { background: var(--deep-rose) !important; transform: translateY(-1px); }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--color-heading);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--bg-surface);
      border-bottom: 1px solid var(--card-border);
      padding: 1.5rem 5%;
      z-index: 999;
      flex-direction: column;
      gap: 0;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--color-heading);
      text-decoration: none;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--card-border);
      transition: color 0.2s;
    }
    .mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .nav-book {
      display: inline-block;
      text-align: center;
      margin-top: 0.5rem;
      padding: 0.65rem 1.5rem;
      background: var(--rose);
      color: #fff !important;
      border-radius: 50px;
      border-bottom: none;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding-top: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(242, 196, 176, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(139, 175, 141, 0.18) 0%, transparent 60%),
        var(--bg);
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    [data-theme="dark"] .hero {
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 184, 75, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(217, 140, 126, 0.1) 0%, transparent 60%),
        var(--bg);
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.45;
      pointer-events: none;
    }
    .hero-blob-1 { width: 500px; height: 500px; background: #F2C4B0; top: -100px; right: -150px; }
    .hero-blob-2 { width: 350px; height: 350px; background: #C7DAC8; bottom: -80px; left: -80px; }
    .hero-blob-3 { width: 280px; height: 280px; background: #E8B84B; opacity: 0.12; top: 30%; left: 60%; }
    [data-theme="dark"] .hero-blob-1 { background: #8B3A2A; opacity: 0.3; }
    [data-theme="dark"] .hero-blob-2 { background: #2A4A2C; opacity: 0.3; }
    [data-theme="dark"] .hero-blob-3 { background: #E8B84B; opacity: 0.08; }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 780px;
      padding: 4rem 2rem;
      animation: fadeUp 1s ease both;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--color-heading);
      margin-bottom: 1.2rem;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--rose);
      font-weight: 300;
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--color-muted);
      line-height: 1.8;
      max-width: 500px;
      margin: 0 auto 2.5rem;
      font-weight: 300;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--rose);
      color: #fff;
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--deep-rose); transform: translateY(-2px); }

    .btn-outline {
      border: 1.5px solid var(--rose);
      color: var(--rose);
      padding: 0.85rem 2.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--color-muted);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* ── SECTIONS ── */
    section { padding: 6rem 5%; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--color-heading);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .section-title em { font-style: italic; color: var(--rose); }

    .section-desc {
      font-size: 0.92rem;
      color: var(--color-muted);
      line-height: 1.9;
      max-width: 520px;
      font-weight: 300;
    }

    /* ── SERVICES ── */
    #services { background: var(--bg-surface); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 2.2rem 1.8rem;
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--rose));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(90, 40, 30, 0.1); }
    [data-theme="dark"] .service-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--color-heading);
      margin-bottom: 0.6rem;
    }

    .service-card p {
      font-size: 0.85rem;
      color: var(--color-muted);
      line-height: 1.8;
    }

    /* ── ABOUT ── */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-img-frame {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 24px;
      background: linear-gradient(135deg, #F2C4B0 0%, #E8B4A0 50%, #D4A090 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      box-shadow: 0 30px 80px rgba(90, 40, 30, 0.15);
    }
    [data-theme="dark"] .about-img-frame {
      background: linear-gradient(135deg, #3A2018 0%, #2A1810 50%, #1E1208 100%);
      box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    }

    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--gold);
      color: #1A0E06;
      border-radius: 50%;
      width: 110px;
      height: 110px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      box-shadow: 0 10px 30px rgba(232, 184, 75, 0.4);
    }
    .about-badge strong { font-size: 1.8rem; font-weight: 600; line-height: 1; }
    .about-badge span { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }

    .about-text { }
    .about-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--card-border);
    }
    .stat strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--gold);
      display: block;
    }
    .stat span { font-size: 0.78rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.08em; }

    /* ── GALLERY ── */
    #gallery { background: var(--bg-surface); text-align: center; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 1rem;
      margin-top: 3.5rem;
    }
    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 1;
      background: linear-gradient(135deg, #F2C4B0, #D4A090);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      transition: transform 0.3s;
      cursor: pointer;
    }
    .gallery-item:hover { transform: scale(1.03); }
    .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; background: linear-gradient(135deg, #F2C4B0, #C8A090); }
    .gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2/1; background: linear-gradient(135deg, #C7DAC8, #A8C5AA); }
    [data-theme="dark"] .gallery-item { background: linear-gradient(135deg, #3A2018, #2A1810) !important; }

    /* ── EXPERIENCES ── */
    #customer-experiences { background: var(--bg); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }
    .review-card {
      background: var(--bg-surface);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 2rem;
    }
    .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .review-text {
      font-size: 0.88rem;
      color: var(--color-text);
      line-height: 1.9;
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .reviewer {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .reviewer-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--blush);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }
    .reviewer-name { font-size: 0.85rem; font-weight: 500; color: var(--color-heading); }
    .reviewer-pet { font-size: 0.75rem; color: var(--color-muted); }

    /* ── BOOK ── */
    #book-appointment {
      background: var(--warm-brown);
      text-align: center;
      border-radius: 30px;
      margin: 0 5%;
      padding: 5rem 5%;
    }
    [data-theme="dark"] #book-appointment { background: #2E1C0E; border: 1px solid rgba(232,184,75,0.15); }
    #book-appointment .section-label { color: var(--gold); }
    #book-appointment .section-title { color: #fff; }
    #book-appointment .section-title em { color: var(--gold-light); }
    #book-appointment .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 2.5rem; }

    /* ── STORE LOCATOR ── */
    #store-locator { background: var(--bg-surface); }
    .stores-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }
    .store-card {
      background: var(--bg-card);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 1.8rem;
    }
    .store-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--color-heading);
      margin-bottom: 0.5rem;
    }
    .store-card p { font-size: 0.82rem; color: var(--color-muted); line-height: 1.8; }
    .store-card a {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.78rem;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.05em;
      font-weight: 500;
      border-bottom: 1px solid var(--gold-light);
      padding-bottom: 1px;
      transition: color 0.2s;
    }
    .store-card a:hover { color: var(--gold-deep); }

    /* ── CONTACT ── */
    #contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      background: var(--bg);
    }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); font-weight: 500; }
    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--input-bg);
      border: 1.5px solid var(--input-border);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--color-text);
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--gold); }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .contact-info { margin-top: 2.5rem; }
    .contact-info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .contact-info-icon {
      width: 42px; height: 42px;
      background: var(--gold-muted);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-info-text strong { font-size: 0.82rem; color: var(--color-heading); font-weight: 500; display: block; }
    .contact-info-text span { font-size: 0.82rem; color: var(--color-muted); }

    /* ── FOOTER ── */
    footer {
      background: #1A0E06;
      color: rgba(255,255,255,0.7);
      padding: 4rem 5% 2rem;
    }
    [data-theme="dark"] footer { background: #100A04; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand .logo { color: #fff; display: block; margin-bottom: 1rem; }
    .footer-brand .logo span { color: var(--gold-light); }
    .footer-brand p { font-size: 0.82rem; line-height: 1.8; max-width: 240px; }
    .footer-social {
      display: flex;
      gap: 0.7rem;
      margin-top: 1.5rem;
    }
    .footer-social a {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      text-decoration: none;
      color: rgba(255,255,255,0.8);
      transition: background 0.2s, color 0.2s;
    }
    .footer-social a:hover { background: var(--gold); color: #1A0E06; }
    .footer-col h5 {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.7rem; }
    .footer-col ul li a {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }

    .footer-bottom {
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
    }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 998;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: pulse-wa 3s infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
      animation: none;
    }
    .whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45); }
      50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      #about { grid-template-columns: 1fr; gap: 3rem; }
      .about-img-frame { max-width: 400px; margin: 0 auto; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(1),
      .gallery-item:nth-child(4) { grid-column: span 2; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      #contact { grid-template-columns: 1fr; gap: 3rem; }
    }

    @media (max-width: 600px) {
      section { padding: 4rem 5%; }
      .hero-inner { padding: 3rem 1.5rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:nth-child(1),
      .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
      .footer-grid { grid-template-columns: 1fr; }
      #book-appointment { margin: 0 0; border-radius: 0; }
      .about-badge { width: 90px; height: 90px; right: 0.5rem; bottom: -1rem; }
      .about-badge strong { font-size: 1.4rem; }
    }