:root {
  --green: #123b2a;
  --green-dark: #0c3841;
  --gold: #c9a45c;
  --gold-light: #e1c47f;
  --black: #111411;
  --white: #fff;
  --cream: #f7f6f1;
  --muted: #68716c;
  --line: #dfe3de;
  --shadow: 0 18px 45px rgba(9,40,28,.10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; color: var(--black); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(18,59,42,.10); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: flex-start; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }

/* Position brand at the viewport left edge while keeping nav content aligned
  Add left padding to the header inner row so items don't overlap the absolute brand */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(18,59,42,.10); backdrop-filter: blur(12px); }
.site-header .brand { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
.site-header .nav-wrap { padding-left: 120px; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; border: 1.5px solid var(--gold); color: var(--green); font-family: "Playfair Display", serif; font-weight: 700; font-size: 16px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: var(--green); }
.brand-text strong { font-family: "Playfair Display", serif; font-size: 20px; }
.brand-text small { margin-top: 4px; font-size: 8px; letter-spacing: 2px; font-weight: 700; }
/* Render ampersand in brand using the sans-serif site font so it appears normal */
.brand-text .amp { font-family: "DM Sans", sans-serif; font-weight: 700; font-style: normal; }
/* Also apply same styling for the ampersand inside the logo mark */
.brand-mark .amp { font-family: "DM Sans", sans-serif; font-weight: 700; font-style: normal; }

/* Logo image styling */
/* Logo image styling (use actual JPG image elements) */
.logo-image {
  width: 170px;
  height: 78px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-brand .logo-image {
  width: 190px;
  height: 92px;
}

@media (max-width: 580px) {
  .logo-image {
    width: 145px;
    height: 68px;
  }

  .footer-brand .logo-image {
    width: 170px;
    height: 82px;
  }
}

/* Accessibility helper */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; margin-left: auto; }
.nav a { transition: color .2s; }
.nav a:hover { color: var(--gold); }
.menu-toggle { display: none; border: 0; background: none; font-size: 28px; color: var(--green); cursor: pointer; }
.hero { min-height: 680px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(110deg, var(--green-dark) 0%, var(--green) 58%, #1c513a 100%); color: white; }
.hero::after { content:""; position:absolute; width:520px; height:520px; border:1px solid rgba(201,164,92,.35); border-radius:50%; right:-170px; top:80px; box-shadow: 0 0 0 70px rgba(201,164,92,.035), 0 0 0 140px rgba(201,164,92,.025); }
.hero-overlay { position:absolute; inset:0; background: radial-gradient(circle at 75% 45%, rgba(201,164,92,.13), transparent 30%); }
.hero-content { position:relative; z-index:2; max-width:780px; padding: 100px 0; }
.eyebrow { color: var(--gold); letter-spacing: 2.4px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(45px, 6vw, 74px); line-height: 1.05; max-width: 850px; margin-bottom: 25px; }
.hero-copy { max-width: 650px; font-size: 18px; color: rgba(255,255,255,.80); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display:inline-flex; justify-content:center; align-items:center; min-height:52px; padding:0 26px; border:1px solid transparent; font:inherit; font-weight:700; cursor:pointer; transition:.2s; }
.btn-gold { background:var(--gold); color:var(--black); }
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-outline { color:white; border-color:rgba(255,255,255,.4); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold-light); }
.trust-bar { background:var(--cream); border-bottom:1px solid var(--line); }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.trust-grid > div { padding:30px 35px; border-right:1px solid var(--line); }
.trust-grid > div:last-child { border-right:0; }
.trust-grid span { color:var(--gold); font-size:12px; font-weight:700; }
.trust-grid strong { display:block; color:var(--green); margin-top:5px; }
.trust-grid p { color:var(--muted); font-size:13px; margin-top:4px; }
.section { padding:105px 0; }
.section-heading { max-width:730px; margin-bottom:60px; }
.section-heading h2, .appointment-intro h2, .contact-section h2 { font-family:"Playfair Display",serif; color:var(--green); font-size:clamp(35px,4vw,52px); line-height:1.12; margin-bottom:18px; }
.section-heading > p:last-child, .appointment-intro > p, .contact-section p { color:var(--muted); }
.service-category + .service-category { margin-top:85px; }
.category-heading { display:flex; align-items:center; gap:18px; margin-bottom:28px; }
.category-heading .eyebrow { margin-bottom:4px; }
.category-heading h3 { color:var(--green); font-family:"Playfair Display",serif; font-size:30px; }
.category-icon { width:56px; height:56px; display:grid; place-items:center; border:1px solid var(--gold); color:var(--gold); font-size:23px; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card { min-height:255px; border:1px solid var(--line); padding:28px; position:relative; transition:.25s; background:white; }
.service-card:hover { transform:translateY(-5px); border-color:rgba(201,164,92,.7); box-shadow:var(--shadow); }
.service-card > span { color:var(--gold); font-size:11px; font-weight:700; }
.service-card h4 { color:var(--green); font-size:19px; line-height:1.3; margin:15px 0 10px; }
.service-card p { color:var(--muted); font-size:14px; margin-bottom:20px; }
.service-card a { color:var(--green); font-size:13px; font-weight:700; }
.service-card a:hover { color:var(--gold); }
.appointment-section { background:var(--green); color:white; }
.appointment-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:start; }
.appointment-intro h2 { color:white; }
.appointment-intro > p { color:rgba(255,255,255,.72); font-size:16px; }
.appointment-note { margin-top:35px; border-left:2px solid var(--gold); padding:15px 0 15px 20px; }
.appointment-note strong { color:var(--gold-light); }
.appointment-note p { color:rgba(255,255,255,.65); font-size:13px; margin-top:4px; }
.appointment-form { background:white; color:var(--black); padding:35px; box-shadow:var(--shadow); }
.appointment-form label { display:block; color:var(--green); font-size:13px; font-weight:700; margin-bottom:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
input, select, textarea { width:100%; margin-top:7px; border:1px solid #ccd3ce; padding:13px 14px; font:inherit; color:var(--black); background:white; outline:none; }
input:focus, select:focus, textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,164,92,.12); }
textarea { resize:vertical; }
.checkbox { display:flex !important; gap:10px; align-items:flex-start; font-weight:500 !important; color:var(--muted) !important; }
.checkbox input { width:auto; margin-top:3px; accent-color:var(--green); }
.btn-green { background:var(--green); color:white; width:100%; }
.btn-green:hover { background:var(--green-dark); }
.form-status { margin-top:14px; font-size:13px; font-weight:600; min-height:20px; }
.contact-section { padding:90px 0; background:var(--cream); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.contact-details { display:grid; gap:1px; background:var(--line); border:1px solid var(--line); }
.contact-details a { background:white; padding:20px 24px; display:flex; justify-content:space-between; gap:20px; align-items:center; transition:.2s; }
.contact-details a:hover { background:#fbfaf5; }
.contact-details span { color:var(--gold); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; }
.contact-details strong { color:var(--green); text-align:right; font-size:14px; }
.site-footer { background:#081d14; color:white; padding:45px 0 20px; }
.footer-top { display:flex; justify-content:space-between; align-items:center; gap:30px; padding-bottom:35px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .brand-text { color:white; }
.socials { display:flex; gap:25px; color:rgba(255,255,255,.72); font-size:13px; font-weight:600; }
.socials a:hover { color:var(--gold-light); }
.footer-bottom { padding-top:20px; display:flex; justify-content:space-between; color:rgba(255,255,255,.45); font-size:11px; }
@media (max-width: 850px) {
  .menu-toggle { display:block; }
  .nav { display:none; position:absolute; top:78px; left:0; right:0; padding:18px 20px 25px; background:white; flex-direction:column; align-items:flex-start; border-bottom:1px solid var(--line); box-shadow:var(--shadow); }
  .nav.open { display:flex; }
  .hero { min-height:620px; }
  .trust-grid, .service-grid { grid-template-columns:1fr 1fr; }
  .appointment-layout, .contact-grid { grid-template-columns:1fr; gap:45px; }
}
@media (max-width: 580px) {
  .container { width:min(100% - 28px,1160px); }
  .brand-text strong { font-size:17px; }
  .brand-text small { font-size:7px; letter-spacing:1.4px; }
  .brand-mark { width:42px; height:42px; }
  .hero-content { padding:75px 0; }
  .hero h1 { font-size:42px; }
  .hero-copy { font-size:16px; }
  .trust-grid, .service-grid, .form-row { grid-template-columns:1fr; }
  .trust-grid > div { border-right:0; border-bottom:1px solid var(--line); }
  .section { padding:75px 0; }
  .appointment-form { padding:24px 18px; }
  .contact-details a { flex-direction:column; align-items:flex-start; }
  .contact-details strong { text-align:left; }
  .footer-top, .footer-bottom { flex-direction:column; align-items:flex-start; }
  .socials { flex-wrap:wrap; gap:16px; }
}
