/*
Theme Name: Manor Design
Theme URI: https://manor-design.co.uk
Author: Manor Design
Description: Bespoke WordPress theme for Manor Design – Kitchens, Bathrooms & Bedrooms, Basildon Essex. Fully editable via ACF custom fields.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: manor-design
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --gold:      #b0884a;
  --gold-lt:   #c9a86c;
  --gold-dk:   #8a6634;
  --dark:      #1c1510;
  --mid:       #3a2d1e;
  --cream:     #f7f2ea;
  --off:       #faf8f4;
  --white:     #ffffff;
  --border:    #e8ddd0;
  --text:      #2e2118;
  --muted:     #7a6858;
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-acc:    'Cormorant Garamond', Georgia, serif;
  --ff-body:   'Jost', 'Helvetica Neue', Arial, sans-serif;
  --max:       1300px;
  --pad:       clamp(20px, 5vw, 60px);
  --tr:        .3s cubic-bezier(.4,0,.2,1);
  --sh-sm:     0 2px 12px rgba(28,21,16,.08);
  --sh-md:     0 8px 32px rgba(28,21,16,.14);
  --sh-lg:     0 20px 60px rgba(28,21,16,.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: var(--off);
       line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--tr); }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: 90px; }
.section-sm { padding-block: 55px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media(max-width:1024px){ .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px){ .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .grid-3,.grid-2,.grid-4 { grid-template-columns: 1fr; }
                          :root { --section-pad: 55px; } }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .2em;
           text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .75rem; }
.section-title { font-family: var(--ff-head); font-size: clamp(1.9rem,3.5vw,2.8rem);
                 font-weight: 700; color: var(--dark); line-height: 1.12; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 640px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin-inline: auto; }
.divider-gold { display: block; width: 48px; height: 3px; background: var(--gold);
                border-radius: 2px; margin: 1rem 0 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-block; padding: 14px 36px; font-family: var(--ff-body);
       font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
       border: 2px solid transparent; border-radius: 2px; cursor: pointer;
       transition: all var(--tr); white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn-white-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--mid); transform: translateY(-1px); }

/* ============================================================
   PLACEHOLDER (for missing images)
   ============================================================ */
.ph { background: #d4c9b8; display: flex; flex-direction: column; align-items: center;
      justify-content: center; color: var(--muted); font-size: .72rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase; text-align: center; gap: .5rem;
      position: relative; overflow: hidden; }
.ph::before { content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,.07) 20px,rgba(255,255,255,.07) 21px); }
.ph i { font-size: 2rem; opacity: .35; position: relative; z-index: 1; }
.ph span { position: relative; z-index: 1; padding: .2rem .6rem;
           background: rgba(255,255,255,.55); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar { background: var(--dark); color: rgba(255,255,255,.72); font-size: .78rem;
          letter-spacing: .05em; padding: 8px 0; border-bottom: 1px solid rgba(176,136,74,.22); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center;
                gap: 1rem; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 2rem; align-items: center; }
.topbar-left a,.topbar-right a { color: rgba(255,255,255,.72); display: flex;
                                  align-items: center; gap: .4rem; }
.topbar-left a:hover,.topbar-right a:hover { color: var(--gold-lt); }
.topbar-left i,.topbar-right i { color: var(--gold); font-size: .85em; }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-social { display: flex; gap: .75rem; }
.topbar-social a { opacity: .6; font-size: .9rem; }
.topbar-social a:hover { opacity: 1; color: var(--gold-lt); }
.topbar-cta { background: var(--gold) !important; color: #fff !important;
              padding: 4px 14px; border-radius: 2px; font-weight: 700; font-size: .7rem; }
.topbar-cta:hover { background: var(--gold-lt) !important; }
@media(max-width:640px){ .topbar-social,.topbar-cta { display: none; }
                          .topbar-left { gap: 1rem; font-size: .68rem; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header { background: var(--white); border-bottom: 1px solid var(--border);
               position: sticky; top: 0; z-index: 900; transition: box-shadow var(--tr); }
#site-header.scrolled { box-shadow: var(--sh-md); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between;
             gap: 2rem; padding-block: 16px; }

.site-logo { display: flex; flex-direction: column; gap: 2px; cursor: pointer; }
.logo-name { font-family: var(--ff-head); font-size: 2.05rem; font-weight: 700;
             color: var(--dark); line-height: 1; letter-spacing: .02em; white-space: nowrap; }
.logo-tag { font-family: var(--ff-acc); font-style: italic; font-size: .72rem;
            color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.site-logo img { max-height: 60px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: .1rem; }
.primary-nav > li { position: relative; }
.primary-nav > li > a { display: flex; align-items: center; gap: .3rem; padding: 9px 13px;
  font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text); border-radius: 2px; transition: color var(--tr); white-space: nowrap; }
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a,
.primary-nav > li.current-menu-ancestor > a { color: var(--gold); }
.primary-nav .fa-chevron-down { font-size: .55em; transition: transform var(--tr); }
.primary-nav > li:hover .fa-chevron-down { transform: rotate(180deg); }

.nav-drop { position: absolute; top: calc(100% + 4px); left: 0; min-width: 230px;
            background: var(--white); border: 1px solid var(--border);
            border-top: 2px solid var(--gold); box-shadow: var(--sh-md);
            border-radius: 0 0 4px 4px; opacity: 0; visibility: hidden;
            transform: translateY(-6px); transition: all var(--tr); z-index: 50; }
.primary-nav > li:hover > .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
/* second-level fly-out */
.nav-drop li { position: relative; }
.nav-drop .nav-drop { top: -2px; left: 100%; }
.nav-drop li:hover > .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop .nav-caret { float: right; font-size: .55em; opacity: .55; margin-top: 5px; }
.nav-drop a { display: block; padding: 9px 16px; font-size: .78rem; color: var(--text);
              border-bottom: 1px solid var(--border); transition: all var(--tr); }
.nav-drop li:last-child a { border-bottom: none; }
.nav-drop a:hover { background: var(--cream); color: var(--gold); padding-left: 22px; }

.hdr-right { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.hdr-phone { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
             color: var(--dark); display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
.hdr-phone i { color: var(--gold); font-size: .75em; }
.hdr-phone:hover { color: var(--gold); }

.mob-toggle { display: none; flex-direction: column; gap: 5px;
              background: none; border: none; cursor: pointer; padding: 4px; }
.mob-toggle span { display: block; width: 25px; height: 2px; background: var(--dark);
                   border-radius: 2px; transition: all var(--tr); }
.mob-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-toggle.open span:nth-child(2) { opacity: 0; }
.mob-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:1024px){
  .mob-toggle { display: flex; }
  .nav-wrap { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999;
              flex-direction: column; justify-content: center; align-items: center; padding: 2rem; }
  .nav-wrap.open { display: flex; }
  .primary-nav { flex-direction: column; gap: 0; width: 100%; max-width: 380px; }
  .primary-nav > li > a { font-size: 1.3rem; color: var(--white); padding: 14px 0;
                           border-bottom: 1px solid rgba(255,255,255,.1); justify-content: space-between; }
  .nav-drop { position: static; opacity: 1; visibility: visible; transform: none;
              background: rgba(255,255,255,.05); border: none; box-shadow: none; display: none; }
  .primary-nav li.open > .nav-drop { display: block; }
  .nav-drop a { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.06); }
  .hdr-right .btn,.hdr-phone { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center;
        overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover;
           background-position: center; opacity: .5; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(28,21,16,.75) 0%,rgba(28,21,16,.3) 60%,rgba(176,136,74,.08) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding-block: 80px; }
.hero-content .eyebrow { color: var(--gold-lt); margin-bottom: 1.2rem; }
.hero-title { font-family: var(--ff-head); font-size: clamp(2.8rem,6vw,5.2rem);
              font-weight: 700; color: var(--white); line-height: 1.05;
              letter-spacing: -.02em; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 540px;
            line-height: 1.8; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero entrance animation — staggered fade-up */
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-content .eyebrow { animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) both .15s; }
.hero-title            { animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) both .35s; }
.hero-sub              { animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) both .55s; }
.hero-btns             { animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) both .75s; }
@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow, .hero-title, .hero-sub, .hero-btns { animation: none; }
}

/* Real-photography trust band */
.real-photos-band { background: var(--cream); padding: 28px 0; }
.real-photos-band .wrap { display: flex; align-items: center; justify-content: center; gap: 1.1rem; text-align: center; }
.real-photos-band i { font-size: 1.7rem; color: var(--gold); flex-shrink: 0; }
.real-photos-band p { font-family: var(--ff-acc); font-style: italic; font-size: 1.2rem;
                      color: var(--dark); max-width: 840px; line-height: 1.5; margin: 0; }
.real-photos-band strong { font-style: normal; color: var(--gold-dk); }
@media(max-width:560px){ .real-photos-band .wrap { flex-direction: column; gap: .6rem; } }

/* Cookie consent bar */
.manor-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
  background: var(--dark); color: rgba(255,255,255,.85); padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; border-top: 2px solid var(--gold); box-shadow: 0 -4px 24px rgba(0,0,0,.25); }
.manor-cookie p { margin: 0; font-size: .85rem; max-width: 720px; line-height: 1.5; }
.manor-cookie a { color: var(--gold-lt); text-decoration: underline; }
.manor-cookie .btn { flex-shrink: 0; padding: 9px 26px; font-size: .72rem; }
.manor-cookie[hidden] { display: none; }
.manor-cookie { z-index: 9999; }
.manor-cookie__btns { display: flex; gap: .6rem; flex-shrink: 0; }
.manor-cookie__backdrop { position: fixed; inset: 0; z-index: 9990; background: rgba(18,13,8,.6); }
.manor-cookie__backdrop[hidden] { display: none; }
.hero-badges { position: absolute; bottom: 40px; right: var(--pad); z-index: 2;
               display: flex; gap: 1.5rem; }
.hero-badge { background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
              border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
              padding: 12px 20px; text-align: center; color: var(--white); }
.hero-badge .num { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 700;
                   color: var(--gold-lt); display: block; line-height: 1; }
.hero-badge .lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
@media(max-width:768px){ .hero { min-height: 75vh; } .hero-badges { display: none; } }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip { background: var(--dark); border-top: 1px solid rgba(176,136,74,.22); }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr);
            border-left: 1px solid rgba(255,255,255,.07); }
.usp-item { padding: 30px 26px; border-right: 1px solid rgba(255,255,255,.07);
            display: flex; align-items: flex-start; gap: 1rem; transition: background var(--tr); }
.usp-item:hover { background: rgba(176,136,74,.07); }
.usp-icon { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.usp-text h4 { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.usp-text p { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.5; }
@media(max-width:768px){ .usp-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .usp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px;
                overflow: hidden; display: flex; flex-direction: column; transition: all var(--tr); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--gold); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img .ph { aspect-ratio: 4/3; }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700;
                         color: var(--dark); margin-bottom: .5rem; }
.service-card-body p { font-size: .88rem; color: var(--muted); line-height: 1.7; flex: 1; }
.service-card-link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .4rem;
                     font-size: .75rem; font-weight: 700; letter-spacing: .1em;
                     text-transform: uppercase; color: var(--gold); transition: gap var(--tr); }
.service-card-link:hover { gap: .7rem; color: var(--gold-lt); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; height: 500px; }
.about-images .img-main { position: absolute; top: 0; left: 0; width: 75%; height: 85%;
                           object-fit: cover; border-radius: 4px; box-shadow: var(--sh-lg); }
.about-images .img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 52%;
                             object-fit: cover; border-radius: 4px;
                             border: 6px solid var(--white); box-shadow: var(--sh-md); }
.about-images .ph { border-radius: 4px; }
.about-stats { display: flex; gap: 2.5rem; margin: 2rem 0; padding-top: 2rem;
               border-top: 1px solid var(--border); }
.stat-num { font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700;
            color: var(--gold); display: block; line-height: 1; }
.stat-lbl { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
@media(max-width:900px){ .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
                          .about-images { height: 340px; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem;
                 margin-top: 3.5rem; position: relative; }
.process-line { position: absolute; top: 40px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(to right,var(--gold-lt),var(--gold));
  transform-origin: left center; z-index: 0; }
.process-step { text-align: center; position: relative; padding: 0 .5rem; }
.step-icon { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--gold);
             background: rgba(176,136,74,.12); display: flex; align-items: center;
             justify-content: center; margin: 0 auto 1.2rem; font-size: 1.5rem;
             position: relative; z-index: 1; transition: all var(--tr); }
.step-icon i { color: var(--gold-lt); transition: color var(--tr); }
.process-step:hover .step-icon { background: var(--gold); transform: scale(1.08); }
.process-step:hover .step-icon i { color: var(--dark); }
.step-num { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px;
            background: var(--gold); color: var(--white); border-radius: 50%;
            font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.process-step h4 { font-family: var(--ff-head); font-size: .92rem; font-weight: 600;
                   color: var(--white); margin-bottom: .4rem; }
.process-step p { font-size: .76rem; color: rgba(255,255,255,.6); line-height: 1.6; }
@media(max-width:900px){ .process-steps { grid-template-columns: repeat(3,1fr); gap: 2rem; }
                          .process-line { display: none; } }
@media(max-width:560px){ .process-steps { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--cream); border: 1px solid var(--border); border-radius: 4px;
              padding: 2rem; position: relative; transition: all var(--tr); }
.testi-card:hover { border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-3px); }
.testi-card::before { content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--ff-head); font-size: 5rem; color: var(--gold); opacity: .18; line-height: 1; }
.testi-stars { display: flex; gap: 2px; color: var(--gold); font-size: .82rem; margin-bottom: 1rem; }
.testi-text { font-family: var(--ff-acc); font-style: italic; font-size: 1.05rem;
              color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem;
                border-top: 1px solid var(--border); padding-top: 1rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
                display: flex; align-items: center; justify-content: center;
                font-family: var(--ff-head); font-weight: 700; color: var(--white);
                font-size: 1.1rem; flex-shrink: 0; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: .88rem; color: var(--dark); display: block; }
.testi-loc { font-size: .75rem; color: var(--muted); }
@media(max-width:900px){ .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg,var(--mid),var(--dark)); padding-block: 80px;
              position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle,rgba(176,136,74,.1) 0%,transparent 70%); pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between;
             gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text .eyebrow { color: var(--gold-lt); }
.cta-text h2 { font-family: var(--ff-head); font-size: clamp(1.7rem,3vw,2.4rem);
               font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
.cta-text p { color: rgba(255,255,255,.72); max-width: 480px; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-filter { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: 8px 22px; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
              text-transform: uppercase; background: transparent; border: 1px solid var(--border);
              color: var(--muted); cursor: pointer; border-radius: 2px; transition: all var(--tr); }
.filter-btn:hover,.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.gallery-item { display: block; position: relative; overflow: hidden; border-radius: 3px;
                cursor: pointer; aspect-ratio: 4/3; text-decoration: none; color: inherit; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .ph { height: 100%; aspect-ratio: auto; }
.gallery-overlay { position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(28,21,16,.82) 0%,transparent 55%);
  opacity: 0; transition: opacity var(--tr); display: flex; align-items: flex-end; padding: 1.5rem; color: var(--white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; }
.gallery-overlay span { font-size: .72rem; opacity: .75; text-transform: uppercase;
                         letter-spacing: .1em; display: block; margin-top: 2px; }
@media(max-width:768px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-strip { background: var(--dark); padding-block: 48px; }
.brands-grid { display: flex; align-items: center; justify-content: center;
               flex-wrap: wrap; gap: 2rem 4rem; margin-top: 1.5rem; }
.brand-name { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
              letter-spacing: .05em; text-transform: uppercase;
              color: rgba(255,255,255,.3); transition: color var(--tr); }
.brand-name:hover { color: var(--gold-lt); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px;
             overflow: hidden; display: flex; flex-direction: column; transition: all var(--tr); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .ph { aspect-ratio: 16/9; }
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: .75rem; }
.blog-cat { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
            background: var(--gold); color: var(--white); padding: 3px 10px; border-radius: 2px; }
.blog-date { font-size: .75rem; color: var(--muted); }
.blog-card-body h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700;
                     color: var(--dark); line-height: 1.35; margin-bottom: .5rem; flex: 1; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: .84rem; color: var(--muted); line-height: 1.7; }
.blog-more { margin-top: 1rem; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
             text-transform: uppercase; color: var(--gold); display: inline-flex;
             align-items: center; gap: .3rem; }
.blog-more:hover { gap: .6rem; }
@media(max-width:900px){ .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; padding-block: 90px; background: var(--dark); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(28,21,16,.78),rgba(28,21,16,.4)); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-family: var(--ff-head); font-size: clamp(2rem,5vw,3.5rem);
                         font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 600px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px;
                padding: 1.1rem 1.4rem; display: flex; align-items: flex-start;
                gap: 1rem; transition: all var(--tr); margin-bottom: .75rem; }
.contact-card:hover { border-color: var(--gold); box-shadow: var(--sh-sm); }
.contact-card-icon { width: 42px; height: 42px; background: rgba(176,136,74,.1); border-radius: 50%;
                     display: flex; align-items: center; justify-content: center;
                     color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.contact-card-text strong { display: block; font-size: .75rem; letter-spacing: .06em;
                             text-transform: uppercase; margin-bottom: .15rem; color: var(--dark); }
.contact-card-text a,.contact-card-text span { font-size: .88rem; color: var(--muted); }
.contact-card-text a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border);
                     border-radius: 4px; padding: 2.5rem; box-shadow: var(--sh-sm); }
.contact-form-wrap h3 { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700;
                         color: var(--dark); margin-bottom: .5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .06em;
                    text-transform: uppercase; color: var(--text); }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: 11px 14px;
  font-family: var(--ff-body); font-size: .9rem; color: var(--text); background: var(--off);
  border: 1px solid var(--border); border-radius: 2px; outline: none; transition: border-color var(--tr); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,136,74,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
#form-msg { margin-top: 1rem; padding: 12px 16px; border-radius: 3px; font-size: .88rem; display: none; }
#form-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#form-msg.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; }
                          .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   SHOWROOM PAGE
   ============================================================ */
.showroom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.showroom-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 1rem; }
.showroom-imgs img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.showroom-imgs img:first-child { grid-row: span 2; height: 100%; }
.showroom-imgs .ph { border-radius: 3px; }
.showroom-detail { display: flex; align-items: flex-start; gap: .75rem;
                   font-size: .9rem; color: var(--text); margin-bottom: .75rem; }
.showroom-detail i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
@media(max-width:900px){ .showroom-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--dark); color: rgba(255,255,255,.72); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem;
               padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo-name { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.footer-logo-tag { font-family: var(--ff-acc); font-style: italic; color: var(--gold);
                   font-size: .78rem; letter-spacing: .1em; }
.footer-about { margin-top: 1rem; font-size: .84rem; line-height: 1.8; }
.footer-contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { font-size: .84rem; display: flex; align-items: center; gap: .5rem;
                    color: rgba(255,255,255,.72); transition: color var(--tr); }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-contact i { color: var(--gold); width: 14px; }
.footer-col h4 { font-family: var(--ff-head); font-size: .92rem; font-weight: 600;
                 color: var(--white); margin-bottom: 1.2rem; padding-bottom: .75rem;
                 border-bottom: 1px solid rgba(176,136,74,.28); }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .87rem; color: rgba(255,255,255,.66); transition: all var(--tr);
                      display: flex; align-items: center; gap: .4rem; }
.footer-col ul li a::before { content: '›'; color: var(--gold); opacity: .6; }
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-bottom { padding-block: 22px; display: flex; align-items: center;
                 justify-content: space-between; flex-wrap: wrap; gap: 1rem;
                 font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal { background: #15100b; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-legal p { margin: 0; text-align: center; font-size: .72rem; line-height: 1.5; color: rgba(255,255,255,.4); }
.footer-legal__note { color: rgba(255,255,255,.3); }
.footer-legal a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer-legal a:hover { color: var(--gold-lt); }
.footer-credit { color: rgba(255,255,255,.62); text-decoration: none; transition: color var(--tr); }
.footer-credit:hover { color: var(--gold-lt); }
.footer-social { display: flex; gap: .75rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14);
                   display: flex; align-items: center; justify-content: center;
                   color: rgba(255,255,255,.52); font-size: .82rem; transition: all var(--tr); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.38); }
.footer-links a:hover { color: var(--gold-lt); }
@media(max-width:1024px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }

/* ============================================================
   WP CORE
   ============================================================ */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.page-content h2,.page-content h3 { font-family: var(--ff-head); color: var(--dark); margin: 1.5rem 0 .75rem; }
.page-content p { margin-bottom: 1rem; color: var(--muted); line-height: 1.85; }
.page-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content ul li { color: var(--muted); margin-bottom: .4rem; }

/* ============================================================
   MOBILE TWEAKS (phones)
   ============================================================ */
/* Hamburger to the far right once the mobile nav kicks in */
@media(max-width:1024px){
  .hdr-right { display: none; }
}
@media(max-width:768px){
  /* 1. Remove the top bar on mobile */
  .topbar { display: none !important; }

  /* 2. Bigger logo */
  .logo-name { font-size: 1.9rem; }
  .site-logo img, .custom-logo-link img { max-height: 56px; }
  .hdr-inner { padding-block: 14px; }

  /* 3. Footer tidy — collapsible link columns (text size unchanged) */
  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-col h4 { margin-bottom: 0; cursor: pointer; display: flex; align-items: center;
                   justify-content: space-between; user-select: none; }
  .footer-col h4::after { content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 400; line-height: 1; }
  .footer-col.open h4::after { content: '\2013'; }
  .footer-col ul { display: none; padding-top: 1rem; }
  .footer-col.open ul { display: flex; }

  /* keep the cookie bar above the fixed contact bar */
  .manor-cookie { bottom: 72px; }

  /* leave room for the fixed bottom contact bar */
  body { padding-bottom: 66px; }
}

/* 4. Mobile quick-contact bar + slide-up sheet */
.mqc, .mqc-sheet { display: none; }
@media(max-width:768px){
  .mqc { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
         background: var(--dark); border-top: 1px solid rgba(176,136,74,.3);
         padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  .mqc-bar { width: 100%; display: flex; align-items: center; justify-content: center; gap: .55rem;
             background: var(--gold); color: #fff; border: none; border-radius: 4px; padding: 15px;
             font-family: var(--ff-body); font-size: .8rem; font-weight: 700; letter-spacing: .12em;
             text-transform: uppercase; cursor: pointer; }
  .mqc-sheet { display: block; position: fixed; inset: 0; z-index: 980; }
  .mqc-sheet[hidden] { display: none; }
  .mqc-overlay { position: absolute; inset: 0; background: rgba(14,11,8,.6); }
  .mqc-panel { position: absolute; left: 0; right: 0; bottom: 0; background: var(--off,#faf8f4);
               border-radius: 16px 16px 0 0; padding: 30px 22px calc(26px + env(safe-area-inset-bottom));
               animation: mqcUp .3s ease both; }
  @keyframes mqcUp { from { transform: translateY(100%); } to { transform: none; } }
  .mqc-close { position: absolute; top: 10px; right: 16px; background: none; border: none;
               font-size: 2rem; line-height: 1; color: var(--muted,#7a6858); cursor: pointer; }
  .mqc-panel h3 { font-family: var(--ff-head); font-size: 1.5rem; color: var(--dark); margin: 0 0 1.1rem; }
  .mqc-hours { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.4rem;
               padding-bottom: 1.2rem; border-bottom: 1px solid var(--border,#e8ddd0); }
  .mqc-hours .mqc-hours-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
                                color: var(--gold); font-weight: 700; margin-bottom: .25rem; }
  .mqc-hours span:not(.mqc-hours-label) { color: var(--muted,#7a6858); font-size: .95rem; }
  .mqc-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 15px;
             border-radius: 4px; font-weight: 700; font-size: .8rem; letter-spacing: .08em;
             text-transform: uppercase; margin-bottom: .8rem; text-decoration: none; }
  .mqc-btn--call { background: var(--gold); color: #fff; }
  .mqc-btn--msg { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
}
