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

:root {
  --ink:    #1a1e18;
  --forest: #2c4030;
  --sage:   #4a6650;
  --gold:   #b8963c;
  --cream:  #f5f1ea;
  --white:  #fdfcf9;
  --mist:   #e8e4db;
  --body-font: 'Jost', sans-serif;
  --display-font: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4vw;
  background: rgba(253,252,249,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.nav-logo {
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .03em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 8vw 5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--mist);
}
.page-hero .eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  max-width: 700px;
}
.page-hero p {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: #4a4f47;
  max-width: 560px;
  line-height: 1.8;
}

/* ── SECTION COMMONS ── */
section { padding: 6rem 8vw; }
.section-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-intro {
  font-size: .95rem;
  color: #4a4f47;
  max-width: 600px;
  margin-bottom: 4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); }

/* ── HOME HERO ── */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 5vw 8vw 8vw;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--sage); }
.hero-sub {
  font-size: 1rem;
  color: #4a4f47;
  max-width: 440px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-phone {
  font-family: var(--display-font);
  font-size: 1.15rem;
  color: var(--forest);
  letter-spacing: .04em;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,64,48,.18) 0%, transparent 60%);
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem; left: -1px;
  background: var(--white);
  padding: 1.2rem 2rem;
  border-left: 3px solid var(--gold);
}
.hero-badge p { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); }
.hero-badge strong { display: block; font-family: var(--display-font); font-size: 1.3rem; font-weight: 600; color: var(--forest); }

/* ── HOME INTRO STRIP ── */
.intro-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 4rem 8vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.intro-item {}
.intro-num {
  font-family: var(--display-font);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.intro-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,241,234,.6); margin-bottom: .7rem; }
.intro-text { font-size: .9rem; color: rgba(245,241,234,.75); line-height: 1.7; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--mist);
}
.service-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(44,64,48,.1); z-index: 1; }
.service-img-wrap { overflow: hidden; height: 180px; }
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.75);
  transition: filter .4s, transform .4s;
}
.service-card:hover .service-img { filter: saturate(1); transform: scale(1.03); }
.service-body { padding: 1.5rem 1.6rem 2rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.service-num { font-size: .65rem; letter-spacing: .2em; color: var(--gold); font-weight: 500; }
.service-title { font-family: var(--display-font); font-size: 1.2rem; font-weight: 600; color: var(--forest); line-height: 1.3; }
.service-desc { font-size: .85rem; color: #4a4f47; line-height: 1.75; flex: 1; }
.service-link { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: .5rem; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; filter: saturate(.8); }
.about-img-deco {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}
.about-text { font-size: .95rem; color: #3a3f38; line-height: 1.85; margin-bottom: 1.4rem; }

.partner-section { margin-top: 3.5rem; }
.partner-heading { font-family: var(--display-font); font-size: 1.5rem; font-weight: 600; color: var(--forest); margin-bottom: 1.5rem; }
.partner-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--mist);
  background: var(--cream);
}
.partner-card img { width: 80px; height: auto; object-fit: contain; }
.partner-card p { font-size: .85rem; color: #4a4f47; line-height: 1.75; }

/* ── CONTACT ── */
.contact-section { background: var(--forest); color: var(--cream); }
.contact-section .section-title { color: var(--cream); }
.contact-section .section-intro { color: rgba(245,241,234,.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(245,241,234,.2);
  color: var(--cream);
  padding: .75rem 1rem;
  font-family: var(--body-font);
  font-size: .9rem;
  font-weight: 300;
  outline: none;
  transition: border-color .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,241,234,.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: .7rem; font-size: .8rem; color: rgba(245,241,234,.6); }
.form-check input { margin-top: 3px; accent-color: var(--gold); }
.form-check a { color: var(--gold); }
.btn-send {
  align-self: flex-start;
  padding: .9rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--body-font);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.btn-send:hover { opacity: .88; transform: translateY(-1px); }
.form-success { font-size: .85rem; color: var(--gold); display: none; margin-top: .5rem; }

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-label { font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.info-value { font-family: var(--display-font); font-size: 1.3rem; font-weight: 300; color: var(--cream); }
.info-value a { color: var(--cream); text-decoration: none; }
.info-value a:hover { color: var(--gold); }

.social-links { display: flex; gap: 1.2rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,241,234,.6); text-decoration: none; transition: color .2s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(245,241,234,.4);
  padding: 3rem 8vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .06em;
}
.footer-brand { font-family: var(--display-font); font-size: 1.1rem; color: rgba(245,241,234,.7); font-weight: 400; margin-bottom: .5rem; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: rgba(245,241,234,.4); text-decoration: none; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 6rem 6vw 4rem; }
  .hero-right { height: 55vw; }
  .intro-strip { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-deco { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  nav { padding: .9rem 5vw; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--mist); padding: 1.5rem 6vw; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 4rem 6vw; }
  .page-hero { padding: 8rem 6vw 4rem; }
}
