@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --dark: #1a1714;
  --gold: #1a4d3a;
  --gold-light: #4a9b7f;
  --emerald: #2d6a4f;
  --emerald-light: #3d8b68;
  --muted: #7a7168;
  --border: #e0d8cc;
  --white: #fdfbf7;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  border-bottom: 2px solid rgba(26, 77, 58, 0.1);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--dark);
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links .nav-cta a {
  background: var(--emerald);
  color: #fff;
  border-bottom: none;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.25s;
}
.nav-links .nav-cta a:hover {
  background: var(--emerald-light);
}

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 12px 0;
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.nav-dropdown-menu li a:hover { color: var(--dark); background: var(--cream); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ── */
.page { padding-top: 72px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(21, 39, 33, 0.88) 0%, rgba(26, 77, 58, 0.75) 50%, rgba(21, 39, 33, 0.85) 100%),
    url('watch-movement.jpg') center center / cover no-repeat;
  overflow: hidden;
  border-bottom: 3px solid var(--emerald);
}

.hero-bg-text {
  position: absolute;
  right: -10px;
  bottom: -20px;
  transform: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 2px rgba(125, 191, 159, 0.35);
  color: rgba(125, 191, 159, 0.08);
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 48px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7dbf9f;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #7dbf9f;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: #f5f7f4;
}

.hero h1 em {
  font-style: italic;
  color: #7dbf9f;
}

.hero-sub {
  font-size: 15px;
  color: rgba(245, 247, 244, 0.75);
  max-width: 420px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.25s;
}

.btn-dark {
  background: var(--dark);
  color: #ffffff;
  border: 1px solid var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.divider-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }

/* ── SECTION ── */
section { padding: 96px 48px; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-body {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.9;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 77, 58, 0.12);
  margin-top: 64px;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 2px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover { background: rgba(26, 77, 58, 0.07); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.25s;
}
.service-card:hover .service-card-num { color: var(--emerald-light); }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--dark);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-link::after { content: '→'; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--dark);
  color: var(--white);
  display: block;
  border-top: 3px solid var(--emerald);
}

.about-strip-content {
  padding: 96px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-strip-content .section-label {
  color: var(--gold-light);
  justify-content: center;
}
.about-strip-content .section-label::before { background: var(--gold-light); }

.about-strip-content .section-title { color: var(--white); }

.about-strip-content .section-body {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.about-strip-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(74, 155, 127, 0.2);
  justify-content: center;
}

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

.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.about-strip-image {
  background: rgba(26, 77, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.about-strip-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0.3;
}

/* ── VISIT STRIP ── */
.visit-strip {
  background: rgba(26, 77, 58, 0.09);
  display: flex;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--border);
}

.visit-info {
  flex: 1;
  padding: 48px 48px;
  border-right: 1px solid rgba(26, 77, 58, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-info.visit-cta {
  flex: 0 0 auto;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
}

.visit-info.visit-cta .btn-dark {
  background: var(--emerald);
  color: #ffffff;
  white-space: nowrap;
  transition: background 0.25s;
}
.visit-info.visit-cta .btn-dark:hover {
  background: var(--emerald-light);
}

.visit-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.visit-info p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.9;
}

.visit-info a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* ── PAGE HEADER ── */
.page-header {
  background: rgba(26, 77, 58, 0.07);
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.page-header .section-label { margin-bottom: 12px; }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  max-width: 700px;
}

.page-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.9;
}

/* ── SERVICES LIST PAGE ── */
.services-list {
  padding: 80px 48px;
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.service-group h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.service-group ul {
  list-style: none;
}

.service-group ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-group ul li::before {
  content: '—';
  color: var(--gold);
  font-size: 12px;
}

/* ── CONTACT FORM ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 70vh;
}

.contact-info {
  background: var(--dark);
  color: var(--white);
  padding: 96px 64px;
}

.contact-info .section-label { color: var(--gold-light); }
.contact-info .section-label::before { background: var(--gold-light); }

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

.contact-detail {
  margin-bottom: 32px;
}

.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-form-wrap {
  padding: 96px 64px;
  background: var(--white);
}

.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 40px;
}

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

.form-group {
  margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

/* ── VIDEOS PAGE ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.video-card {
  background: var(--cream);
  border: 1px solid var(--border);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: rgba(255,255,255,0.1);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body {
  padding: 24px 28px;
}

.video-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.video-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 3px solid var(--emerald);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav {
  border-bottom: 2px solid rgba(26, 77, 58, 0.1); padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 60px 24px; }
  .hero-bg-text { font-size: 80px; opacity: 0.5; }

  section { padding: 64px 24px; }
  .page-header { padding: 60px 24px 48px; }

  .services-grid {
  background: rgba(26, 77, 58, 0.02); grid-template-columns: 1fr; }
  .about-strip-content { padding: 64px 24px; }
  .about-strip-stats { gap: 28px; }

  .visit-strip { flex-direction: column; }
  .visit-info { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }

  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding: 64px 24px; }
  .contact-form-wrap { padding: 64px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .services-columns { grid-template-columns: 1fr; }
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   POLISH PASS — Jul 2026
   ══════════════════════════════════════════ */

/* ── Nav: scroll shadow + animated link underlines ── */
nav {
  border-bottom: 2px solid rgba(26, 77, 58, 0.1); transition: box-shadow 0.3s ease; }
nav.scrolled { box-shadow: 0 2px 24px rgba(26, 23, 20, 0.07); }

.nav-links > li > a {
  position: relative;
  padding-bottom: 3px;
}
.nav-links > li:not(.nav-cta) > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links > li:not(.nav-cta) > a:hover::after,
.nav-links > li:not(.nav-cta) > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Mobile nav: working slide-down panel ── */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    box-shadow: 0 16px 32px rgba(26, 23, 20, 0.08);
    animation: navSlide 0.25s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 13px;
  }
  .nav-links.open .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    border: none;
    background: var(--cream);
    min-width: 0;
    padding: 4px 0;
  }
  .nav-links.open .nav-dropdown-menu li a { padding: 10px 40px; }
  .nav-links.open .nav-cta a {
  background: var(--emerald);
  color: #fff; border-bottom: none; }
  body.nav-open { overflow: hidden; }

  /* hamburger → X */
  .nav-hamburger span { transform-origin: center; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ── Hero entrance (plays on load, no scroll needed) ── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hero-eyebrow,
.hero h1,
.hero .hero-sub,
.hero .hero-content > div:last-child {
  animation: riseIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 { animation-delay: 0.12s; }
.hero .hero-sub { animation-delay: 0.24s; }
.hero .hero-content > div:last-child { animation-delay: 0.36s; }

/* hero already animates on load — don't double it with scroll fade */
.hero .hero-content.fade-in { opacity: 1; transform: none; }

/* subtle drift on the big 1988 outline */
@keyframes heroBgDrift {
  from { transform: translateY(-52%); }
  to   { transform: translateY(-48%); }
}
.hero-bg-text {
  animation: heroBgDrift 9s ease-in-out infinite alternate;
}

/* ── Buttons: arrow micro-interaction ── */
.btn::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.25s ease;
}
.btn:hover::after { transform: translateX(4px); }

/* ── Service card links: arrow nudge ── */
.service-card-link::after { transition: transform 0.25s ease; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-eyebrow, .hero h1, .hero .hero-sub,
  .hero .hero-content > div:last-child { animation: none; }
  .hero-bg-text { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════
   FEEDBACK PASS — hero richness + readability
   ══════════════════════════════════════════ */

/* ── HERO: image background set in main hero block above ── */

/* green seam along the bottom of the hero */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--emerald-light) 30%, #7dbf9f 50%, var(--emerald-light) 70%, transparent 100%);
  opacity: 0.6;
}

/* 1988 outline tuned for dark photo background */
.hero-bg-text {
  -webkit-text-stroke: 2px rgba(125, 191, 159, 0.35);
  color: rgba(125, 191, 159, 0.08);
}

/* eyebrow becomes a chip */
.hero-eyebrow {
  display: inline-flex;
  padding: 8px 18px 8px 14px;
  background: rgba(26, 77, 58, 0.1);
  border: 1px solid rgba(26, 77, 58, 0.35);
  border-radius: 999px;
  color: #1a4d3a;
}

/* second hero button: gold, not gray outline */
.hero .btn-outline {
  border: 1px solid rgba(245, 247, 244, 0.4);
  color: #f5f7f4;
  background: rgba(245, 247, 244, 0.08);
 1px solid var(--gold);
  color: #1a4d3a;
  background: rgba(253, 251, 247, 0.6);
}
.hero .btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* emerald flourish under the headline */
.hero h1 em {
  position: relative;
}

/* ── READABILITY: repair + additional services pages ── */
.page-header {
  padding: 88px 48px 40px;
}
.page-header p {
  font-size: 17px;
  color: #4a443b;
  max-width: 640px;
  line-height: 1.8;
}

.services-list {
  padding: 48px 48px 96px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-columns {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 56px 48px;
  margin-top: 32px;
}

.service-group h3 {
  font-size: 28px;
  color: var(--dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.service-group ul li {
  font-size: 16px;
  color: #3d3830;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.service-group ul li::before {
  color: var(--gold);
}

@media (max-width: 768px) {
  .page-header { padding: 64px 24px 32px; }
  .services-list { padding: 32px 24px 72px; }
  .service-group ul li { font-size: 15px; }
}

/* ── Centered page headers ── */
.page-header {
  text-align: center;
}
.page-header h1,
.page-header p {
  margin-left: auto;
  margin-right: auto;
}
.page-header .section-label {
  justify-content: center;
}
/* balance the gold dash on both sides when centered */
.page-header .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ── VISIT PAGE ── */
.visit-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 70vh;
}
.visit-map {
  position: relative;
  border-left: 1px solid var(--border);
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .visit-wrap { grid-template-columns: 1fr; }
  .visit-map {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 380px;
  }
}

/* ── CONTACT PAGE (form only) ── */
.contact-form-solo {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px 96px;
}
.page-header p a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
@media (max-width: 768px) {
  .contact-form-solo { padding: 0 24px 72px; }
}

/* ── Visit page: scale up the info panel ── */
.visit-wrap .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 72px;
}

.visit-wrap .contact-info h2 {
  font-size: clamp(48px, 4.5vw, 64px);
  margin-bottom: 56px;
}

.visit-wrap .contact-detail {
  margin-bottom: 44px;
}
.visit-wrap .contact-detail:last-child {
  margin-bottom: 0;
}

.visit-wrap .contact-detail-label {
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.visit-wrap .contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.visit-wrap .contact-detail-value a {
  border-bottom: 1px solid rgba(74, 155, 127, 0.45);
  transition: border-color 0.2s, color 0.2s;
}
.visit-wrap .contact-detail-value a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 768px) {
  .visit-wrap .contact-info { padding: 64px 24px; }
  .visit-wrap .contact-info h2 { margin-bottom: 40px; }
  .visit-wrap .contact-detail { margin-bottom: 32px; }
  .visit-wrap .contact-detail-value { font-size: 24px; }
}
