/* ============================================================
   LEKMAR WATCHES — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400;1,8..60,500;1,8..60,600&family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --teal-900: #163b43;
  --teal-700: #204f59;
  --teal-500: #3d9aae;
  --teal-100: #d7e6e9;
  --gold-700: #6f5a34;
  --gold-500: #8d7142;
  --gold-300: #b8946a;
  --gold-100: #ebd5b0;
  --ivory:    #f8f1eb;
  --ivory-2:  #fff6e8;
  --cream:    #e7ddd2;
  --ink:      #14262b;
  --white:    #ffffff;
  --gray-300: #d9d9d9;
  --gray-500: #8a8a8a;

  --fd: 'Source Serif 4', ui-serif, Georgia, 'Times New Roman', serif;
  --fb: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fe: 'Poppins', var(--fb);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:      0 18px 40px -24px rgba(20,38,43,0.45);
  --shadow-lift: 0 30px 60px -28px rgba(20,38,43,0.55);
  --shadow-soft: 0 8px 24px -16px rgba(20,38,43,0.35);

  --max:       1280px;
  --gutter:    clamp(1.25rem, 5.4vw, 6.5rem);
  --section-y: clamp(4rem, 7vw, 7rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* --- Layout --- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section    { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-sm { padding-top: clamp(2.5rem,4vw,4rem); padding-bottom: clamp(2.5rem,4vw,4rem); }
.section-xl { padding-top: clamp(5rem,9vw,9rem);   padding-bottom: clamp(5rem,9vw,9rem); }

.bg-ivory { background: var(--ivory); }
.bg-alt   { background: var(--ivory-2); }
.bg-teal  { background: var(--teal-700); }
.bg-teal-deep { background: var(--teal-900); }

.grid-2    { display: grid; grid-template-columns: repeat(2,1fr);  gap: clamp(2rem,4vw,4.5rem);    align-items: center; }
.grid-3    { display: grid; grid-template-columns: repeat(3,1fr);  gap: clamp(1.5rem,2.6vw,2.6rem); }
.grid-4    { display: grid; grid-template-columns: repeat(4,1fr);  gap: clamp(1.25rem,2.4vw,2.2rem); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: clamp(1.25rem,2vw,1.75rem); }
.grid-2-start { align-items: start; }

/* --- Animations --- */
@keyframes heroUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.hero-anim-1 { animation: heroUp .8s var(--ease) .05s both; }
.hero-anim-2 { animation: heroUp .8s var(--ease) .15s both; }
.hero-anim-3 { animation: heroUp .8s var(--ease) .28s both; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity:1; transform:none; }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-anim-1, .hero-anim-2, .hero-anim-3 { animation: none; opacity:1; transform:none; transition:none; }
}

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  background: rgba(22,59,67,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,221,210,.15);
  transition: background .3s var(--ease);
}
.nav.scrolled { background: rgba(22,59,67,.97); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; flex: 1; justify-content: center; }
.nav-links a {
  font-family: var(--fb); font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  color: rgba(248,241,235,.8); transition: color .25s var(--ease); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-300); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger { display: none; align-items: center; justify-content: center; padding: 8px; color: var(--ivory); }
.nav-hamburger svg { display: block; width: 24px; height: 24px; }
.nav-spacer { height: 72px; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--teal-900); z-index: 99;
  flex-direction: column; padding: 2rem var(--gutter); gap: 0; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fb); font-weight: 600; font-size: 1.25rem;
  color: var(--ivory); padding: .9rem 0;
  border-bottom: 1px solid rgba(248,241,235,.12);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-300); }
.mobile-menu .mobile-cta { margin-top: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--fb); font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  padding: 12px 24px; border-radius: 0; cursor: pointer; border: none;
  transition: all .3s var(--ease); white-space: nowrap; line-height: 1;
}
.btn-lg  { padding: 16px 32px; font-size: 1rem; }
.btn-sm  { padding: 9px 18px; font-size: .82rem; }

.btn-primary { background: var(--gold-500); color: var(--ivory); }
.btn-primary:hover { background: var(--gold-700); color: var(--ivory); }

.btn-secondary { background: transparent; color: var(--teal-700); border: 1.5px solid var(--teal-700); }
.btn-secondary:hover { color: var(--gold-700); border-color: var(--gold-700); }

.btn-ghost { background: transparent; color: var(--ivory); border: 1.5px solid rgba(248,241,235,.45); }
.btn-ghost:hover { color: var(--gold-300); border-color: var(--gold-300); }

.btn-outline { background: transparent; color: var(--teal-700); border: 1.5px solid var(--teal-700); }
.btn-outline:hover { background: var(--teal-700); color: var(--ivory); }

/* --- Eyebrow --- */
.eyebrow {
  display: block;
  font-family: var(--fe); font-weight: 600; font-size: .8125rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: .75rem;
}
.eyebrow-light { color: var(--gold-300); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(61,154,174,.18) 0%, transparent 70%);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(5rem,10vw,9rem) var(--gutter) clamp(4rem,8vw,7rem);
  position: relative;
}
.hero h1 {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(2.5rem,5vw,5rem); line-height: 1.08; letter-spacing: -.01em;
  color: var(--ivory); margin-bottom: 1.5rem; max-width: 18ch;
}
.hero h1 em { font-style: italic; }
.hero-lead {
  font-family: var(--fb); font-size: clamp(1rem,1.5vw,1.25rem); line-height: 1.7;
  color: rgba(248,241,235,.72); max-width: 56ch; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image band */
.hero-band { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.hero-band-img { aspect-ratio: 21/9; border-radius: 4px; overflow: hidden; background: var(--gray-300); }
.hero-band-img img { width: 100%; height: 100%; object-fit: cover; }

/* Page-level hero (inner pages) */
.page-hero h1 { font-size: clamp(2.2rem,4vw,4rem); }

/* --- Section Heading --- */
.sh { text-align: center; }
.sh-left { text-align: left; }

.sh h2, .sh-left h2 {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(1.75rem,2.5vw,2.5rem); line-height: 1.12; letter-spacing: -.01em;
  color: var(--teal-700);
}
.sh h2 em, .sh-left h2 em { font-style: italic; }
.sh-light h2 { color: var(--ivory); }

.sh .sh-lead, .sh-left .sh-lead {
  margin-top: 1rem; font-size: clamp(1rem,1.4vw,1.2rem); line-height: 1.7; color: var(--gray-500);
  max-width: 60ch;
}
.sh .sh-lead { margin-left: auto; margin-right: auto; }
.sh-light .sh-lead { color: rgba(248,241,235,.72); }

/* --- Service Cards --- */
.service-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--cream); border-radius: 4px;
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.sc-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-300); }
.sc-img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.service-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.sc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 4px; border: 1px solid var(--gold-500); color: var(--gold-500);
}
.sc-icon svg, .sc-icon i { width: 22px; height: 22px; stroke-width: 1.5; }
.sc-title { font-family: var(--fd); font-weight: 500; font-size: 1.5rem; color: var(--teal-700); }
.sc-body p { font-size: .95rem; line-height: 1.65; color: var(--gray-500); }
.sc-more {
  margin-top: auto; padding-top: .75rem;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .85rem; color: var(--gold-500);
}
.sc-arrow { display: inline-block; transition: transform .32s var(--ease); }
.service-card:hover .sc-arrow { transform: translateX(4px); }

/* --- Watch Cards --- */
.watch-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--cream); border-radius: 4px;
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.watch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.wc-img { aspect-ratio: 4/5; overflow: hidden; background: var(--gray-300); }
.wc-img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.watch-card:hover .wc-img img { transform: scale(1.05); }
.wc-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.wc-brand { font-family: var(--fe); font-weight: 600; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-500); }
.wc-model { font-family: var(--fd); font-weight: 500; font-size: 1.15rem; line-height: 1.25; color: var(--teal-700); }
.wc-ref   { font-size: .8rem; color: var(--gray-500); }
.wc-badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .25rem; }
.badge {
  display: inline-block; padding: 3px 10px;
  font-family: var(--fe); font-weight: 600; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--cream); border-radius: 999px; color: var(--teal-700); background: var(--white);
}
.wc-footer { margin-top: auto; padding-top: .75rem; display: flex; justify-content: space-between; align-items: center; }
.wc-price { font-family: var(--fd); font-weight: 500; font-size: 1.2rem; color: var(--teal-700); }
.wc-price-poa { color: var(--gray-500); }
.wc-enquire { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: .8rem; color: var(--gold-500); }

/* --- Brand Pills --- */
.brand-pills { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.brand-pill {
  font-family: var(--fb); font-weight: 600; font-size: .875rem;
  padding: 10px 22px; border: 1px solid var(--cream); border-radius: 999px;
  background: var(--white); color: var(--teal-700); cursor: pointer;
  transition: all .25s var(--ease); display: inline-block; text-decoration: none;
}
.brand-pill:hover { border-color: var(--gold-500); background: var(--gold-100); color: var(--gold-700); }

/* --- Feature Items --- */
.fi { display: flex; flex-direction: column; gap: .75rem; }
.fi-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 4px; border: 1px solid var(--gold-500); color: var(--gold-500);
}
.fi-icon svg, .fi-icon i { width: 22px; height: 22px; stroke-width: 1.5; }
.fi-icon-dark { border-color: rgba(248,241,235,.25); color: var(--gold-300); }
.fi h3 { font-family: var(--fd); font-weight: 500; font-size: 1.25rem; color: var(--teal-700); }
.fi-dark h3 { color: var(--ivory); }
.fi p { font-size: 1rem; line-height: 1.65; color: var(--gray-500); }
.fi-dark p { color: rgba(248,241,235,.72); }

/* --- Process Steps --- */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1.25rem; padding-bottom: 1.75rem; position: relative; }
.step:not(:last-child)::before {
  content: ''; position: absolute; left: 19px; top: 44px; bottom: 0;
  width: 1px; background: var(--cream);
}
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold-500); display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 500; font-size: 1.1rem; color: var(--gold-500);
}
.step-body { padding-top: .5rem; }
.step-body h4 { font-family: var(--fd); font-weight: 500; font-size: 1.15rem; color: var(--teal-700); margin-bottom: .35rem; }
.step-body p  { font-size: .95rem; line-height: 1.65; color: var(--gray-500); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--ivory-2); border: 1px solid var(--cream); border-radius: 4px;
  padding: clamp(2rem,4vw,3.5rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.cta-banner h3 {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(1.6rem,2.5vw,2.4rem); line-height: 1.12; color: var(--teal-700); margin-bottom: .75rem;
}
.cta-banner h3 em { font-style: italic; }
.cta-banner p { font-size: 1rem; line-height: 1.65; color: var(--gray-500); max-width: 50ch; }

/* Statement Banner */
.statement {
  background: var(--teal-700); padding: clamp(4rem,6vw,6rem) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.statement::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(61,154,174,.2) 0%, transparent 70%);
}
.statement h2 {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(2.5rem,5vw,5rem); line-height: 1.08; letter-spacing: -.01em;
  color: var(--ivory); position: relative;
}
.statement h2 em { font-style: italic; }

/* --- Note Box --- */
.note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--ivory-2); border: 1px solid var(--gold-100);
  border-left: 3px solid var(--gold-500); border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
}
.note-icon { flex-shrink: 0; margin-top: 2px; color: var(--gold-500); }
.note-icon svg, .note-icon i { width: 20px; height: 20px; stroke-width: 1.5; }
.note strong { display: block; font-family: var(--fd); font-weight: 500; font-size: 1rem; color: var(--teal-700); margin-bottom: .4rem; }
.note p { font-size: .9rem; line-height: 1.65; color: var(--gray-500); }

/* --- Status Banner --- */
.status-banner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between;
  background: var(--ivory-2); border: 1px solid var(--cream);
  border-left: 3px solid var(--gold-500); border-radius: 0 4px 4px 0;
  padding: 1.5rem 2rem;
}
.sb-content { display: flex; align-items: flex-start; gap: 1rem; max-width: 72ch; }
.sb-content i, .sb-content svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-500); width: 22px; height: 22px; stroke-width: 1.5; }
.sb-content strong { display: block; font-family: var(--fd); font-weight: 500; font-size: 1.25rem; color: var(--teal-700); margin-bottom: .35rem; }
.sb-content p { font-size: .95rem; line-height: 1.6; color: var(--gray-500); }

/* --- Brand Filter --- */
.brand-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.filter-btn {
  font-family: var(--fb); font-weight: 600; font-size: .82rem; letter-spacing: .02em;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--cream);
  background: transparent; color: var(--teal-700); cursor: pointer;
  transition: all .2s var(--ease);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold-500); background: var(--gold-500); color: var(--ivory); }
.watch-hidden { display: none !important; }

/* --- Inventory Checklist Items --- */
.checklist-item {
  display: flex; gap: .75rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--cream); border-radius: 4px;
  padding: 1.25rem;
}
.checklist-item i, .checklist-item svg { flex-shrink: 0; color: var(--gold-500); width: 20px; height: 20px; stroke-width: 1.5; margin-top: 2px; }
.checklist-item span { font-size: .95rem; line-height: 1.55; }

/* --- Revenue Card --- */
.revenue-card { background: var(--white); border: 1px solid var(--cream); border-radius: 4px; padding: 2rem 2.25rem; box-shadow: var(--shadow); height: 100%; }

/* --- Fee Box --- */
.fee-box {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; border: 1px solid rgba(248,241,235,.25); border-radius: 4px;
}
.fee-box i, .fee-box svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-300); width: 22px; height: 22px; stroke-width: 1.5; }
.fee-box p { font-size: .95rem; line-height: 1.65; color: var(--ivory); }

/* --- Interested Box --- */
.interested-box { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--cream); border-radius: 4px; padding: 1.75rem 2rem; }
.interested-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .75rem; margin-top: .75rem; }
.interested-item { display: flex; gap: 10px; align-items: flex-start; }
.interested-item i, .interested-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-500); width: 18px; height: 18px; stroke-width: 2; }
.interested-item span { font-size: .9rem; line-height: 1.5; }
.interested-note { margin-top: 1.25rem; font-size: .85rem; color: var(--gray-500); font-style: italic; }

/* --- Portrait --- */
.portrait { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--gray-300); }
.portrait img { width:100%; height:100%; object-fit:cover; }

/* --- Forms --- */
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--cream); border-radius: 4px;
  padding: clamp(1.5rem,3vw,2.75rem); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field label { font-family: var(--fb); font-weight: 600; font-size: .85rem; color: var(--teal-700); margin-bottom: .4rem; }
.form-field .req { color: var(--gold-500); margin-left: 3px; }
.form-field .hint { font-size: .78rem; color: var(--gray-500); margin-top: .3rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; font-family: var(--fb); font-size: .95rem; padding: 11px 14px;
  border: 1px solid var(--cream); border-radius: 4px;
  background: var(--white); color: var(--ink); outline: none;
  transition: border-color .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold-500); }
.form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238d7142' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: .82rem; color: var(--gray-500); }
.form-note .req { color: var(--gold-500); }

.file-upload-label {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  padding: 2rem; border: 2px dashed var(--cream); border-radius: 4px;
  cursor: pointer; background: var(--ivory); transition: border-color .2s var(--ease);
}
.file-upload-label:hover { border-color: var(--gold-500); }
.file-upload-label svg, .file-upload-label i { color: var(--gold-500); width: 28px; height: 28px; stroke-width: 1.5; }
.file-upload-label .ut { font-weight: 600; font-size: .9rem; color: var(--teal-700); }
.file-upload-label .uh { font-size: .8rem; color: var(--gray-500); }
.file-upload-label input[type="file"] { display: none; }
.file-count { font-size: .82rem; color: var(--gray-500); margin-top: .5rem; }

/* Form wrapper + success */
.form-wrapper { position: relative; }
.form-success {
  display: none; background: var(--white); border: 1px solid var(--cream); border-radius: 4px;
  padding: 3rem; text-align: center; box-shadow: var(--shadow);
}
.form-success.show { display: block; }
.form-success svg, .form-success i { color: var(--gold-500); width: 52px; height: 52px; stroke-width: 1.5; margin: 0 auto 1.25rem; display: block; }
.form-success h3 { font-family: var(--fd); font-weight: 500; font-size: 1.75rem; color: var(--teal-700); margin-bottom: .75rem; }
.form-success p { font-size: 1rem; line-height: 1.65; color: var(--gray-500); max-width: 44ch; margin: 0 auto 1.75rem; }

/* --- Contact Details --- */
.contact-block { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-rows { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; text-decoration: none; color: inherit; }
.cr-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 4px;
  border: 1px solid var(--gold-500); color: var(--gold-500);
}
.cr-icon svg, .cr-icon i { width: 18px; height: 18px; stroke-width: 1.5; }
.cr-label { font-family: var(--fe); font-weight: 600; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.cr-value { font-family: var(--fd); font-weight: 500; font-size: 1.1rem; color: var(--teal-700); line-height: 1.4; }

/* --- Prose --- */
.prose { display: flex; flex-direction: column; gap: 1rem; }
.prose h2 {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(1.75rem,2.5vw,2.5rem); line-height: 1.15; letter-spacing: -.01em; color: var(--teal-700);
}
.prose h2 em { font-style: italic; }
.prose p { font-size: 1rem; line-height: 1.7; color: var(--gray-500); }
.prose .lead-p { font-size: 1.15rem; line-height: 1.65; color: var(--ink); }

/* --- Contact form heading --- */
.cf-heading { font-family: var(--fd); font-weight: 500; font-size: clamp(1.75rem,2.5vw,2.5rem); color: var(--teal-700); margin-bottom: 1.5rem; }
.cf-heading em { font-style: italic; }

/* --- Footer --- */
.footer { background: var(--teal-900); color: var(--ivory); padding-top: clamp(3rem,6vw,5rem); padding-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-logo a { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-logo p { font-size: .9rem; line-height: 1.65; color: rgba(248,241,235,.6); }
.footer-col-title { display: block; font-family: var(--fe); font-weight: 600; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .9rem; color: rgba(248,241,235,.7); transition: color .2s; }
.footer-links a:hover { color: var(--ivory); }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-ci { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: rgba(248,241,235,.7); text-decoration: none; }
.footer-ci svg, .footer-ci i { flex-shrink: 0; margin-top: 2px; color: var(--gold-300); width: 16px; height: 16px; stroke-width: 1.5; }
.footer-co { font-size: .9rem; line-height: 1.65; color: rgba(248,241,235,.6); }
.footer-bottom { border-top: 1px solid rgba(248,241,235,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; align-items: center; }
.footer-bottom p { font-size: .8rem; color: rgba(248,241,235,.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(248,241,235,.45); }
.footer-legal a:hover { color: rgba(248,241,235,.7); }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-sm { margin-top: clamp(1.5rem,2vw,2rem); }
.mt-md { margin-top: clamp(2rem,3vw,3rem); }
.mt-lg { margin-top: clamp(3rem,4vw,4rem); }
.mb-sm { margin-bottom: clamp(1.5rem,2vw,2rem); }
.mb-md { margin-bottom: clamp(2rem,3vw,3rem); }
.mb-lg { margin-bottom: clamp(3rem,4vw,4rem); }
.flex-between { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.divider { border: none; border-top: 1px solid var(--cream); margin: 1.75rem 0; }
.narrow { max-width: 920px; margin-left: auto; margin-right: auto; }
.text-muted { font-size: .95rem; line-height: 1.7; color: var(--gray-500); }
.text-muted-italic { font-size: .85rem; color: var(--gray-500); font-style: italic; margin-top: 1.25rem; }

/* Lucide icon sizing reset */
.nav-hamburger [data-lucide], .nav-hamburger svg { width: 24px; height: 24px; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .status-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
}
