/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B2A4A; --navy2: #243659; --brass: #C9A84C; --brass2: #E2C97A;
  --cream: #F7F4EE; --cream2: #EDE8DF; --slate: #4A5568; --slate2: #718096;
  --white: #ffffff; --onnavy: #D8D3C7;
}
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--cream); color: var(--navy); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* ─────────────────────────────────────────
   TOP BAR
───────────────────────────────────────── */
.topbar {
  background: var(--navy2); color: var(--onnavy);
  font-size: 0.8rem; padding: 0.45rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.topbar a { color: var(--brass2); }
.topbar-right { display: flex; gap: 1.5rem; }
.topbar-location { display: block; }
.topbar-mobile-phone { display: none; }


/* ─────────────────────────────────────────
   NAVIGATION — DESKTOP
───────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
nav {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
}
.nav-logo { display: flex; flex-direction: column; cursor: pointer; }
.nav-logo-name {
  font-family: Georgia, serif; font-size: 1.15rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.01em; line-height: 1.2;
}
.nav-logo-sub { font-size: 0.7rem; color: var(--slate2); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; flex-wrap: wrap; }
.nav-menu a {
  padding: 0.4rem 0.75rem; border-radius: 4px;
  font-size: 0.85rem; font-weight: 500; color: var(--slate);
  transition: background 0.15s, color 0.15s; cursor: pointer;
}
.nav-menu a:hover { background: var(--cream2); color: var(--navy); }
.nav-menu a.active { color: var(--navy); font-weight: 600; }
.nav-cta-btn {
  background: var(--brass); color: var(--navy) !important;
  font-weight: 700 !important; padding: 0.5rem 1.1rem !important;
  border-radius: 5px; font-size: 0.85rem !important; transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--brass2) !important; }


/* ─────────────────────────────────────────
   NAVIGATION — MOBILE HAMBURGER BUTTON
───────────────────────────────────────── */
.hamburger-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.4rem; border-radius: 6px;
  flex-direction: column; gap: 5px; align-items: center;
  transition: background 0.15s;
}
.hamburger-btn:hover { background: var(--cream2); }
.hamburger-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger → X transition */
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────
   NAVIGATION — MOBILE SLIDE-DOWN MENU
───────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 190;
  flex-direction: column; padding-top: 72px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
  display: flex; flex-direction: column;
  padding: 1rem 1.5rem 2rem; gap: 0.25rem;
}
.mobile-menu-item {
  display: block; padding: 0.9rem 1rem;
  font-size: 1rem; font-weight: 500; color: var(--slate);
  border-radius: 8px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--cream2);
}
.mobile-menu-item:last-of-type { border-bottom: none; }
.mobile-menu-item:hover, .mobile-menu-item.active { background: var(--cream); color: var(--navy); }
.mobile-menu-cta {
  margin-top: 1rem; background: var(--brass); color: var(--navy);
  text-align: center; padding: 1rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s;
}
.mobile-menu-cta:hover { background: var(--brass2); }
.mobile-menu-phone {
  text-align: center; padding: 1rem;
  font-size: 0.9rem; color: var(--slate2);
}
.mobile-menu-phone a { color: var(--brass); font-weight: 600; }


/* ─────────────────────────────────────────
   PAGE VISIBILITY (SINGLE-PAGE APP)
───────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }


/* ─────────────────────────────────────────
   HOME — HERO SECTION
───────────────────────────────────────── */
.hero {
  background: var(--navy); padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px,
    transparent 1px, transparent 40px
  );
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--brass2); font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 20px;
  margin-bottom: 1.5rem; font-weight: 600;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--brass); }
.hero-sub {
  color: var(--onnavy); opacity: 0.8;
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; max-width: 460px;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-gold {
  background: var(--brass); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 5px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s; display: inline-block; cursor: pointer;
}
.btn-gold:hover { background: var(--brass2); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 5px; font-size: 0.92rem;
  transition: border-color 0.2s; display: inline-block; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat-n { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--brass); line-height: 1; }
.hero-stat-l { font-size: 0.78rem; color: var(--onnavy); opacity: 0.6; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }


/* ─────────────────────────────────────────
   GRANDFATHER CLOCK ANIMATION
   Structure (top → bottom):
     .clock-bonnet  — arched pediment / crown
     .clock-trunk   — tall glass door, pendulum swings here
     .clock-waist   — clock face sits here (bottom of case)
     .clock-base    — plinth / footer
───────────────────────────────────────── */
.clock-visual { display: flex; flex-direction: column; align-items: center; }

/* Outer tall case shell */
.clock-case {
  width: 190px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(201,168,76,0.45);
  border-radius: 0 0 8px 8px;
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden; position: relative;
}

/* Bonnet: arched crown at very top */
.clock-bonnet {
  width: 100%;
  background: rgba(201,168,76,0.06);
  border-bottom: 2px solid rgba(201,168,76,0.35);
  padding: 0.7rem 0.5rem 0.6rem;
  text-align: center;
}
.clock-bonnet::before {
  content: '';
  display: block; width: 80px; height: 36px;
  border: 2px solid rgba(201,168,76,0.5);
  border-bottom: none; border-radius: 40px 40px 0 0;
  margin: 0 auto 0.4rem;
}
.clock-bonnet-text {
  font-family: Georgia, serif; font-size: 0.65rem;
  color: var(--brass); letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.5;
}

/* Trunk: tall middle section where pendulum lives */
.clock-trunk {
  width: 100%; flex: 1;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex; flex-direction: column; align-items: center;
  padding: 0.75rem 0; min-height: 140px;
}

/* Pendulum rod + bob */
.pendulum-pivot {
  position: relative; width: 2px; height: 90px;
  background: linear-gradient(to bottom, var(--brass), rgba(201,168,76,0.25));
  transform-origin: top center;
  animation: swing 1.8s ease-in-out infinite;
  margin: 0 auto;
}
.pendulum-bob {
  position: absolute; bottom: -14px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: radial-gradient(circle at 35% 35%, var(--brass2), var(--brass));
  border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@keyframes swing { 0%,100% { transform: rotate(-16deg); } 50% { transform: rotate(16deg); } }

/* Waist: clock face lives at the bottom of the case */
.clock-waist {
  width: 100%;
  background: rgba(201,168,76,0.04);
  border-top: 2px solid rgba(201,168,76,0.35);
  display: flex; flex-direction: column; align-items: center;
  padding: 0.75rem 0 1rem;
}
.clock-face {
  width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.65);
  background: rgba(255,255,255,0.05);
  position: relative; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
.clock-face::before {
  content: ''; position: absolute; inset: 5px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.2);
}
.hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; border-radius: 3px; }
.hand-h { width: 3px; height: 32px; background: var(--brass); margin-left: -1.5px; transform: rotate(-60deg); }
.hand-m { width: 2px; height: 44px; background: var(--white); margin-left: -1px; animation: rot 60s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }
.clock-center-dot { width: 8px; height: 8px; background: var(--brass); border-radius: 50%; position: absolute; z-index: 2; }

/* Base plinth */
.clock-base {
  width: 100%; background: rgba(201,168,76,0.08);
  border-top: 2px solid rgba(201,168,76,0.35); height: 18px;
}


/* ─────────────────────────────────────────
   SHARED SECTION UTILITIES
───────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 0.6rem;
}
.section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 0.75rem;
}
.section-sub { color: var(--slate2); font-size: 1rem; max-width: 560px; line-height: 1.7; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }


/* ─────────────────────────────────────────
   SERVICES — CARD GRID
───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--cream2); border-radius: 10px;
  padding: 2rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-card:hover { border-color: var(--brass); box-shadow: 0 4px 20px rgba(201,168,76,0.1); }
.svc-icon {
  width: 48px; height: 48px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem;
}
.svc-title { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.svc-desc { color: var(--slate2); font-size: 0.9rem; line-height: 1.65; }


/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 3rem 2rem; }
.stats-row { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-n { font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; color: var(--brass); }
.stat-l { color: var(--onnavy); opacity: 0.7; font-size: 0.85rem; margin-top: 4px; }


/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-img-placeholder {
  background: var(--navy); border-radius: 12px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem;
}
.about-img-placeholder .big-clock { font-size: 4rem; }
.about-img-placeholder p { color: var(--onnavy); font-size: 0.85rem; opacity: 0.6; }
.about-body { color: var(--slate); line-height: 1.75; margin-bottom: 1.25rem; }
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
.cred-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; color: var(--slate); }
.cred-dot {
  width: 20px; height: 20px; background: rgba(201,168,76,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.cred-dot::after { content: ''; width: 7px; height: 7px; background: var(--brass); border-radius: 50%; }
.blockquote {
  border-left: 3px solid var(--brass); padding: 1.25rem 0 1.25rem 1.5rem;
  font-family: Georgia, serif; font-style: italic;
  font-size: 1.05rem; color: var(--navy); line-height: 1.55; margin-top: 1.5rem;
}
.blockquote cite { display: block; font-style: normal; font-family: 'Segoe UI', system-ui, sans-serif; font-size: 0.78rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.6rem; }


/* ─────────────────────────────────────────
   SERVICE AREAS — TABS
───────────────────────────────────────── */
.areas-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; border-bottom: 2px solid var(--cream2); margin-bottom: 2.5rem; }
.area-tab {
  padding: 0.7rem 1.4rem; border: none; background: none; cursor: pointer;
  font-size: 0.9rem; font-weight: 500; color: var(--slate2);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s; font-family: inherit;
}
.area-tab:hover { color: var(--navy); }
.area-tab.active { color: var(--navy); font-weight: 700; border-bottom-color: var(--brass); }
.area-panel { display: none; }
.area-panel.active { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.area-panel h3 { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.area-panel h3 em { font-style: normal; color: var(--brass); }
.area-body { color: var(--slate); line-height: 1.7; margin-bottom: 1.5rem; }
.city-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.city-pill { background: var(--white); border: 1px solid var(--cream2); color: var(--slate); font-size: 0.8rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: 500; }
.area-box { background: var(--white); border: 1px solid var(--cream2); border-radius: 10px; padding: 1.75rem; }
.area-box-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass); font-weight: 700; margin-bottom: 1rem; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.checklist li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--slate); }
.check { width: 18px; height: 18px; background: rgba(201,168,76,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check::after { content: '✓'; font-size: 0.65rem; color: var(--brass); font-weight: 700; }


/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.review-card { background: var(--white); border: 1px solid var(--cream2); border-radius: 10px; padding: 1.75rem; }
.review-card.placeholder { border-style: dashed; border-color: var(--brass); opacity: 0.6; }
.stars { color: var(--brass); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.92rem; color: var(--slate); line-height: 1.65; font-style: italic; margin-bottom: 1.25rem; }
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.review-loc { font-size: 0.78rem; color: var(--slate2); margin-top: 2px; }
.review-source { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; color: var(--slate2); margin-top: 0.5rem; border-top: 1px solid var(--cream2); padding-top: 0.65rem; width: 100%; }
.review-notice { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--slate); line-height: 1.6; }
.review-notice strong { color: var(--navy); }


/* ─────────────────────────────────────────
   FAQ — ACCORDION
───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--cream2); border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--cream2); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: var(--white); border: none; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; font-family: inherit; text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--cream); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--brass); transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; color: var(--slate); font-size: 0.92rem; line-height: 1.7; background: var(--white); }
.faq-a.open { display: block; }


/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-info-title { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.contact-info-sub { color: var(--slate2); line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 40px; height: 40px; min-width: 40px; background: var(--cream2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ci-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); font-weight: 700; margin-bottom: 2px; }
.ci-val { font-size: 0.9rem; color: var(--navy); line-height: 1.45; }
.contact-form { background: var(--white); border: 1px solid var(--cream2); border-radius: 10px; padding: 2rem; }
.form-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--slate); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--cream2); border-radius: 6px;
  padding: 0.65rem 0.9rem; font-size: 0.9rem; font-family: inherit;
  color: var(--navy); background: var(--cream); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brass); background: var(--white); }
.form-group textarea { height: 100px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white); border: none;
  border-radius: 6px; padding: 0.9rem; font-size: 0.92rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.2s; margin-top: 0.25rem;
}
.form-submit:hover { background: var(--brass); color: var(--navy); }
.map-placeholder {
  background: var(--cream2); border-radius: 10px; height: 200px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
  border: 1px solid var(--cream2); margin-top: 1.5rem; color: var(--slate2); font-size: 0.85rem;
}


/* ─────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.proc-step { text-align: center; padding: 1.5rem 1rem; }
.proc-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  color: var(--brass); font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.proc-title { font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; font-size: 0.95rem; }
.proc-desc { color: var(--slate2); font-size: 0.85rem; line-height: 1.6; }


/* ─────────────────────────────────────────
   GALLERY / OUR WORK
───────────────────────────────────────── */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gal-filter { padding: 0.5rem 1.1rem; border: 1.5px solid var(--cream2); border-radius: 20px; background: var(--white); font-size: 0.85rem; font-weight: 500; color: var(--slate2); cursor: pointer; transition: all 0.15s; font-family: inherit; }
.gal-filter:hover { border-color: var(--brass); color: var(--navy); }
.gal-filter.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.gal-card { background: var(--white); border: 1px solid var(--cream2); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.gal-card:hover { border-color: var(--brass); box-shadow: 0 6px 24px rgba(201,168,76,0.12); }
.gal-img-placeholder { background: var(--navy); aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; position: relative; }
.gal-img-placeholder .gal-emoji { font-size: 2.5rem; }
.gal-img-placeholder .gal-placeholder-label { font-size: 0.7rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.gal-img-placeholder .gal-placeholder-sub { font-size: 0.65rem; color: var(--onnavy); opacity: 0.5; text-align: center; padding: 0 1rem; }
.gal-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--brass); color: var(--navy); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.6rem; border-radius: 12px; }
.gal-body { padding: 1rem 1.25rem 1.25rem; }
.gal-title { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.3rem; }
.gal-desc { font-size: 0.82rem; color: var(--slate2); line-height: 1.55; }
.gal-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; color: var(--brass); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.5rem; }
.gallery-notice { background: rgba(201,168,76,0.08); border: 1px dashed rgba(201,168,76,0.4); border-radius: 10px; padding: 1.5rem 2rem; text-align: center; margin-bottom: 2.5rem; color: var(--slate); }
.gallery-notice strong { color: var(--navy); display: block; margin-bottom: 0.25rem; font-size: 1rem; }
.gallery-notice span { font-size: 0.85rem; }


/* ─────────────────────────────────────────
   WHAT'S NEW / NEWS
───────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 1.5rem; }
.news-card { background: var(--white); border: 1px solid var(--cream2); border-radius: 10px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.news-card:hover { border-color: var(--brass); box-shadow: 0 4px 20px rgba(201,168,76,0.1); }
.news-img-placeholder { background: var(--navy); aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.news-img-placeholder .news-emoji { font-size: 2.5rem; }
.news-img-placeholder .news-ph-label { font-size: 0.65rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.news-body { padding: 1.5rem; }
.news-meta { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); font-weight: 700; margin-bottom: 0.5rem; }
.news-title { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.news-excerpt { font-size: 0.88rem; color: var(--slate2); line-height: 1.65; }
.news-read-more { display: inline-block; margin-top: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--brass); }
.news-featured { background: var(--navy); border-radius: 12px; padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.news-featured-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brass); margin-bottom: 0.75rem; }
.news-featured-title { font-family: Georgia, serif; font-size: 1.8rem; color: var(--white); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.news-featured-body { color: var(--onnavy); opacity: 0.8; font-size: 0.95rem; line-height: 1.7; }
.news-featured-img { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.news-featured-img .feat-emoji { font-size: 3.5rem; }
.news-featured-img p { font-size: 0.75rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.news-notice { background: rgba(201,168,76,0.08); border: 1px dashed rgba(201,168,76,0.4); border-radius: 10px; padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; color: var(--slate); font-size: 0.85rem; line-height: 1.6; text-align: center; }
.news-notice strong { color: var(--navy); }


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: #0F1A2E; color: rgba(255,255,255,0.45); }
.footer-top { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand-name { font-family: Georgia, serif; font-size: 1.1rem; color: var(--brass); margin-bottom: 0.5rem; }
.footer-brand-desc { font-size: 0.82rem; line-height: 1.6; margin-top: 0.5rem; max-width: 220px; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li { font-size: 0.82rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); transition: color 0.15s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 2rem; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--brass); }


/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band { background: var(--brass); padding: 3.5rem 2rem; text-align: center; }
.cta-band h2 { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.cta-band p { color: var(--navy); opacity: 0.7; margin-bottom: 1.75rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-navy { background: var(--navy); color: var(--white); padding: 0.85rem 2rem; border-radius: 5px; font-weight: 700; font-size: 0.92rem; cursor: pointer; display: inline-block; transition: background 0.2s; }
.btn-navy:hover { background: var(--navy2); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); padding: 0.85rem 2rem; border-radius: 5px; font-weight: 700; font-size: 0.92rem; cursor: pointer; display: inline-block; }


/* ─────────────────────────────────────────
   RESPONSIVE — TABLET (max-width: 820px)
───────────────────────────────────────── */
@media (max-width: 820px) {
  .hero-inner, .about-grid, .contact-grid, .footer-top, .news-featured { grid-template-columns: 1fr; }
  .clock-visual { display: none; }
  .topbar-right { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .area-panel.active { grid-template-columns: 1fr; }
  nav { padding: 0 1rem; }
  .nav-menu { gap: 0; }
  .nav-menu a { padding: 0.4rem 0.5rem; font-size: 0.78rem; }
}


/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE (max-width: 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {
  /* Top bar: show mobile phone only */
  .topbar { padding: 0.45rem 1rem; font-size: 0.75rem; }
  .topbar-location { display: none; }
  .topbar-mobile-phone { display: block; }
  .topbar-right { display: none !important; }

  /* Nav: switch to hamburger */
  nav { padding: 0 1rem; height: 60px; }
  .nav-menu { display: none; }
  .hamburger-btn { display: flex; }

  /* Hero */
  .hero { padding: 2.5rem 1.25rem 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-n { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; width: 100%; padding: 0.85rem 1rem; }

  /* Show clock on mobile, centered, above text */
  .hero-inner .clock-visual {
    display: flex; margin: 0 auto 2rem; order: -1;
  }
  /* Scale the clock down for mobile */
  .clock-case { width: 140px; }
  .clock-face { width: 90px; height: 90px; }
  .hand-h { height: 24px; }
  .hand-m { height: 32px; }
  .pendulum-pivot { height: 70px; }
  .pendulum-bob { width: 24px; height: 24px; bottom: -12px; }
  .clock-bonnet::before { width: 60px; height: 26px; }

  /* Sections */
  .section { padding: 3rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  /* Area tabs: horizontal scroll */
  .areas-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .area-tab { white-space: nowrap; }

  /* FAQ */
  .faq-q { padding: 1rem; font-size: 0.9rem; }
  .faq-a { padding: 0 1rem 1rem; }

  /* CTA band */
  .cta-band { padding: 2.5rem 1.25rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .btn-navy, .btn-outline-navy { width: 100%; text-align: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1rem 1.25rem; }

  /* Hero badge */
  .hero-badge { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
}