:root {
  --black: #000000;
  --white: #ffffff;
  --cream: #f5f1e8;
  --sand: #e7decf;
  --taupe: #b8a99a;
  --mocha: #8a6f5a;
  --espresso: #3b2e26;
  --olive: #6e7254;
  --olive-dark: #4f523d;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-logo-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--espresso);
}

.brand-logo-mini svg { height: 34px; width: auto; }

.brand-logo-mini .brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--espresso);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-links a.btn-solid {
  opacity: 1;
}

.btn-solid {
  background: var(--espresso);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
}

.btn-solid:hover { background: var(--olive-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--espresso);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--black);
  transition: all 0.2s;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--espresso); }

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 25%;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,46,38,0.05) 0%, rgba(59,46,38,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 70px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  max-width: 780px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero p {
  max-width: 520px;
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  padding: 90px 24px 50px;
  text-align: center;
  background: var(--sand);
  color: var(--espresso);
}

.page-hero .hero-eyebrow { justify-content: center; display: flex; color: var(--mocha); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
}
.page-hero p {
  max-width: 560px;
  margin: 16px auto 0;
  opacity: 0.75;
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }

.section-tight { padding: 60px 0; }

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 620px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--espresso);
  opacity: 0.85;
}

.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }

/* ---------- About / Intro split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img { border-radius: 2px; }

.split h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 20px;
}

.split p { margin-bottom: 16px; opacity: 0.88; }

/* ---------- Grid layouts ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 2px;
  text-align: center;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
  color: var(--olive);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p { font-size: 0.92rem; opacity: 0.8; }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 2px;
}

.team-photo {
  aspect-ratio: 4/5;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-family: var(--font-serif);
  font-size: 3rem;
}

.team-info { padding: 24px; }

.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 12px;
}

.team-info p.bio { font-size: 0.9rem; opacity: 0.82; margin-bottom: 16px; }

.team-book {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

/* ---------- Services ---------- */
.services-list {
  max-width: 780px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
  gap: 20px;
}

.service-row h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.service-row .desc { font-size: 0.88rem; opacity: 0.7; margin-top: 4px; }

.service-cat-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
  margin: 50px 0 6px;
}
.service-cat-label:first-child { margin-top: 0; }

/* ---------- Suite / partner businesses ---------- */
.suite-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: 2px;
  border: 1px solid var(--sand);
}

.suite-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.suite-card .role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 14px;
}

.suite-card p { font-size: 0.92rem; opacity: 0.85; margin-bottom: 16px; }

.suite-photo {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* ---------- Contact / Location ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-block { margin-bottom: 30px; }
.contact-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
}
.contact-block p, .contact-block a { font-size: 1.05rem; }

.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--olive-dark);
  color: var(--white);
  padding: 70px 24px;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}
.cta-band p { opacity: 0.85; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--sand);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid a, .footer-grid p {
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 10px;
}
.footer-grid a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.55;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--sand);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }

  .split, .grid-3, .grid-2, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
