:root {
  --ink: #27312d;
  --muted: #65746d;
  --paper: #fbf7f0;
  --panel: #ffffff;
  --sage: #708b75;
  --sage-dark: #405f49;
  --rose: #c98578;
  --gold: #d0a85f;
  --line: rgba(39, 49, 45, 0.14);
  --shadow: 0 24px 60px rgba(28, 39, 33, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 247, 240, 0.94);
  box-shadow: 0 10px 28px rgba(39, 49, 45, 0.08);
  backdrop-filter: blur(14px);
}

.page-header-nav {
  position: sticky;
  color: var(--ink);
  background: rgba(251, 247, 240, 0.96);
  box-shadow: 0 10px 28px rgba(39, 49, 45, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(118px, 14vw, 184px);
  height: auto;
  max-height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand-tagline {
  flex-shrink: 0;
  max-width: none;
  white-space: nowrap;
  color: #f3b7a8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.page-header-nav .brand-tagline,
.site-header.scrolled .brand-tagline {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
}

.hero-image,
.hero-focus-image,
.hero-overlay {
  position: absolute;
}

.hero-image,
.hero-overlay {
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-hero-image {
  object-position: 68% 28%;
}

.hero-focus-image {
  display: none;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(28, 37, 31, 0.92) 0%, rgba(28, 37, 31, 0.72) 39%, rgba(28, 37, 31, 0.16) 72%),
    linear-gradient(0deg, rgba(28, 37, 31, 0.34), rgba(28, 37, 31, 0.04));
}

.hero-content {
  z-index: 3;
  position: relative;
  max-width: 690px;
  margin-top: 10px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3b7a8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7.3vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-inline-image {
  display: block;
  width: min(100%, 540px);
  aspect-ratio: 3 / 4;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #26312d;
  background: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro div {
  display: grid;
  gap: 8px;
  min-height: 138px;
  align-content: center;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--panel);
}

.intro strong {
  font-size: 18px;
}

.intro span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section-copy p,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-list article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(39, 49, 45, 0.06);
}

.service-list p,
.care-grid p {
  margin: 0;
  color: var(--muted);
}

.care-band {
  color: #fff;
  background: var(--sage-dark);
}

.care-band .eyebrow {
  color: #f0c87d;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.care-grid article {
  display: grid;
  min-height: 210px;
  align-content: center;
  justify-items: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.care-grid h3 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.2vw, 28px);
}

.care-grid p {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-link {
  display: grid;
  gap: 5px;
  padding: 24px;
  text-decoration: none;
}

.contact-link + .contact-link {
  border-top: 1px solid var(--line);
}

.contact-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(20px, 3vw, 28px);
}

.page-hero {
  padding: clamp(78px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 86px);
  background: #fff;
}

.page-hero h1 {
  max-width: 13ch;
  color: var(--ink);
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(39, 49, 45, 0.06);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.gallery-card div {
  padding: 22px;
}

.gallery-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h2 {
  margin: 0 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.18;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 170px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(28, 37, 31, 0.92), rgba(28, 37, 31, 0.55));
  }

  .bo-hero-image {
    object-position: 58% 50%;
  }

  .hero-inline-image {
    width: min(78vw, 220px);
    object-position: center center;
  }

  h1 {
    max-width: 10ch;
  }

  .intro,
  .split,
  .service-list,
  .care-grid,
  .contact-section,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo {
    width: 112px;
    max-height: 86px;
  }

  .brand-tagline {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 154px 18px 54px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .intro div,
  .section,
  .service-list article,
  .care-grid article,
  .gallery-card div,
  .contact-link {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
