:root {
  --stone: #f5f2ed;
  --stone2: #ede8e0;
  --tan: #b5956a;
  --tan-mid: #c9a97e;
  --tan-pale: #f0e9df;
  --ink: #2c2c2c;
  --ink-mid: #5a5a5a;
  --ink-light: #8a8a8a;
  --navy: #1a2744;
  --white: #ffffff;
  --max: 1080px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone2);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img {
  height: 56px;   /* originally 46px */
  width: auto;
}

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

.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--tan);
}

.nav-cta {
  background: var(--tan) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #9a7c56 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

/* ─── HERO ─── */
.hero {
  background: var(--stone);
  padding: 0 2rem;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  min-height: 82vh;
}

.hero-text {
  padding: 4rem 0;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
/*
.hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--tan);
}
*/
.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--tan);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--tan);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #9a7c56;
}

.btn-outline {
  border: 1.5px solid var(--tan);
  color: var(--tan);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--tan);
  color: var(--white);
}

.hero-photo {
  align-self: end;
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(to bottom, transparent 55%, var(--stone) 100%);
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem 1.2rem;
  font-size: 0.78rem;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

/* ─── PILLARS / TRUST ─── */
.pillars {
  background: var(--white);
  border-top: 1px solid var(--stone2);
  border-bottom: 1px solid var(--stone2);
  padding: 2rem 2rem;
}

.pillars-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar {
  text-align: center;
  padding: 1.2rem 0.5rem;
}

.pillar-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pillar-label {
  font-size: 0.8rem;
  color: var(--ink-mid);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.pillar-div {
  width: 1px;
  background: var(--stone2);
  align-self: stretch;
  margin: 0;
}

/* ─── SECTION SHARED ─── */
.section {
  padding: 5.5rem 2rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--tan);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ─── ABOUT ─── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  border-radius: 2px;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--tan-pale);
  border-radius: 2px;
  z-index: -1;
}

.about-content {}

.about-content p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-content p:last-of-type {
  margin-bottom: 1.8rem;
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cred-tag {
  background: var(--tan-pale);
  color: var(--ink-mid);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ─── SERVICES ─── */
#services {
  background: var(--stone);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--stone2);
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card {
  background: var(--white);
  padding: 2.2rem;
  border: none;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--tan-pale);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

.service-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--stone2);
  margin-bottom: 1rem;
  line-height: 1;
  font-weight: 400;
}

/* ─── FEES ─── */
.fees-strip {
  margin-top: 2rem;
  background: var(--white);
  border: 1.5px solid var(--stone2);
  border-left: 3px solid var(--tan);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  display: flex;
  gap: 3rem;
  align-items: start;
  flex-wrap: wrap;
}

.fees-item {
  flex: 1;
  min-width: 200px;
}

.fees-item .fi-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.4rem;
}

.fees-item .fi-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
}

.fees-item .fi-note {
  font-size: 0.85rem;
  color: var(--ink-mid);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ─── GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px;
  gap: 3px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s;
  filter: brightness(0.95) saturate(0.9);
}

.gallery img:hover {
  transform: scale(1.02);
  filter: brightness(1) saturate(1);
}

.gallery-wrap {
  overflow: hidden;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {}

.contact-info p {
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone2);
  font-size: 0.92rem;
}

.info-list li:first-child {
  padding-top: 0;
}

.il-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  min-width: 72px;
  padding-top: 3px;
}

.il-val {
  color: var(--ink);
  line-height: 1.6;
}

.il-val a:hover {
  color: var(--tan);
}

.contact-panel {
  background: var(--stone);
  border: 1.5px solid var(--stone2);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-panel h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.contact-panel p {
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.steps-list {
  list-style: none;
  margin-bottom: 2rem;
}

.steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--stone2);
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.steps-list li:last-child {
  border-bottom: none;
}

.step-n {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--tan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--tan);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--stone);
  border-top: 1px solid var(--stone2);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--stone2);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 300px;
}

.footer-aoc h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.6rem;
}

.footer-aoc p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.75;
}

.footer-bottom {
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--stone2);
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .hero-photo {
    display: none;
  }

  .pillars-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pillar-div {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    max-width: 200px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .gallery-wrap:last-child {
    display: none;
  }

  .fees-strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: 2rem;
    gap: 0;
    overflow-y: auto;
  }

  .mobile-menu a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--stone2);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
  }

  .mobile-menu a:last-child {
    margin-top: 1.5rem;
    background: var(--tan);
    color: var(--white);
    text-align: center;
    border-radius: 2px;
    padding: 1rem;
    border: none;
  }
}