:root {
  --cream: #f8f3eb;
  --warm-cream: #f0e7dc;
  --paper: #fffdf9;
  --beige: #ddcdb8;
  --gold: #b89252;
  --black: #090807;
  --ink: #1a1714;
  --muted: #655d55;
  --line: rgba(26, 23, 20, 0.14);
  --shadow: 0 18px 44px rgba(29, 23, 17, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}

main,
section,
article,
div {
  min-width: 0;
}

h1,
h2,
h3,
p {
  max-width: 100%;
  overflow-wrap: break-word;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 42px 0;
  color: var(--black);
}

.logo {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  gap: 4px;
  font-size: 2rem;
  line-height: 0.9;
}

.logo-script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.logo-heavy {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo small {
  position: absolute;
  right: 34px;
  bottom: -10px;
  font-size: 0.27em;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  padding-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.site-nav a {
  padding-bottom: 7px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: var(--black);
}

.book-now,
.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 3px;
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.book-now:hover,
.primary-button:hover {
  background: transparent;
  color: var(--black);
}

.book-now {
  justify-self: end;
  min-width: 116px;
  padding: 0 20px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 46%) minmax(0, 1fr);
  min-height: 620px;
  overflow: hidden;
  background: var(--warm-cream);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(248, 243, 235, 0.99) 0%,
    rgba(248, 243, 235, 0.96) 34%,
    rgba(248, 243, 235, 0.45) 51%,
    rgba(248, 243, 235, 0) 68%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
  padding: 104px 22px 58px clamp(38px, 7vw, 100px);
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 4.25vw, 4.15rem);
  font-weight: 600;
  line-height: 0.96;
}

.hero-copy > p:not(.hero-kicker, .appointment-line) {
  max-width: 430px;
  margin: 0 0 26px;
  font-size: 1rem;
}

.primary-button {
  min-width: 218px;
  margin-bottom: 18px;
  padding: 0 22px;
}

.appointment-line {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  font-size: 0.86rem;
}

.appointment-line svg,
.contact-item svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-image {
  min-width: 0;
  min-height: 620px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1;
}

h3 {
  margin: 0 0 7px;
  font-size: 1.22rem;
  line-height: 1.05;
}

.featured-weight {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  max-width: 1120px;
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 82, 0.35);
  background: linear-gradient(135deg, #f7efe6 0%, #fffdf9 58%, #f3e7da 100%);
  box-shadow: 0 16px 42px rgba(29, 23, 17, 0.08);
}

.featured-weight-image {
  min-height: 380px;
  background: #e8d9c6;
}

.featured-weight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-weight-content {
  align-self: center;
  padding: clamp(34px, 5vw, 58px);
}

.featured-weight-content h2 {
  margin-bottom: 12px;
}

.featured-weight-content > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 0 20px;
  color: #34302c;
  font-size: 0.95rem;
  line-height: 1.55;
}

.featured-weight-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.featured-weight-content li {
  position: relative;
  min-height: 24px;
  padding-left: 32px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.featured-weight-content li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1fr);
  gap: clamp(38px, 6vw, 76px);
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 32px;
  align-items: center;
}

.about > img {
  width: 100%;
  height: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about p:not(.section-kicker) {
  margin: 0 0 12px;
  color: #34302c;
  font-size: 0.88rem;
  line-height: 1.45;
}

.why {
  padding: 56px 32px 64px;
  background: linear-gradient(180deg, #f5efe7, #eee3d6);
  text-align: center;
}

.why h2,
.services h2 {
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.why article {
  min-width: 0;
  min-height: 190px;
  padding: 4px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.why article:last-child {
  border-right: 0;
}

.why svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  fill: none;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.why p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 62px 32px 72px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  background: #f5ede3;
  border: 1px solid rgba(26, 23, 20, 0.08);
  box-shadow: 0 10px 28px rgba(29, 23, 17, 0.06);
}

.service-card img {
  width: 100%;
  height: 230px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card:nth-child(1) img {
  object-position: 62% center;
}

.service-card:nth-child(2) img {
  object-position: center;
}

.service-card:nth-child(3) img,
.service-card:nth-child(4) img {
  object-position: 68% center;
}

.service-card div {
  min-height: 206px;
  padding: 20px 20px 22px;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.service-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(26, 23, 20, 0.86);
  border-radius: 3px;
  background: rgba(26, 23, 20, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
}

.service-button:hover {
  background: transparent;
  color: var(--black);
}

.service-button-featured {
  min-height: 42px;
  padding-right: 18px;
  padding-left: 18px;
  border-color: var(--black);
  box-shadow: 0 8px 20px rgba(184, 146, 82, 0.2);
}

.founder {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 1fr);
  gap: clamp(38px, 6vw, 76px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 72px;
  align-items: center;
}

.founder > img {
  width: 100%;
  height: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 32%;
  box-shadow: var(--shadow);
}

.founder h2 {
  margin-bottom: 4px;
}

.founder .role {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder p:not(.section-kicker, .role) {
  max-width: 540px;
  margin: 0;
  color: #37322e;
  font-size: 0.88rem;
  line-height: 1.55;
}

.weight-management-callout {
  max-width: 920px;
  margin: 8px auto 0;
  padding: 42px 32px 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.weight-management-callout h2 {
  margin-bottom: 10px;
}

.weight-management-callout p:not(.section-kicker) {
  max-width: 570px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.medical-oversight {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 32px 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.medical-oversight h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.medical-oversight > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-footer {
  display: grid;
  grid-template-columns: 190px 150px minmax(200px, 240px) 160px minmax(170px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px clamp(28px, 6vw, 82px) 38px;
  background: #f2e9df;
  color: var(--ink);
  font-size: 0.74rem;
}

.footer-logo {
  font-size: 1.9rem;
}

.contact-item {
  display: inline-flex;
  min-width: 0;
  gap: 8px;
  align-items: center;
}

.contact-item svg {
  width: 15px;
  height: 15px;
}

.footer-action {
  display: grid;
  gap: 7px;
  justify-items: start;
}

.footer-action .book-now {
  min-width: 168px;
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.69rem;
}

.footer-action > span {
  font-size: 0.7rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px calc(clamp(28px, 6vw, 82px) * -1) -38px;
  padding: 10px 20px;
  background: var(--black);
  color: #fff;
  font-size: 0.68rem;
  text-align: center;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-nav {
    display: none;
  }

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

  .contact-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-logo,
  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: fixed;
    padding: 14px 20px;
    background: rgba(248, 243, 235, 0.96);
    box-shadow: 0 8px 28px rgba(26, 23, 20, 0.09);
    backdrop-filter: blur(12px);
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    min-height: 0;
    order: 1;
  }

  .hero-image img {
    aspect-ratio: 16 / 10;
    object-position: 60% center;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    order: 2;
    padding: 42px 32px 52px;
  }

  .hero-copy h1 {
    max-width: 660px;
  }

  .about,
  .featured-weight,
  .founder {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .about > img,
  .founder > img {
    height: 360px;
    aspect-ratio: 16 / 10;
  }

  .featured-weight {
    margin: 28px 28px 0;
  }

  .featured-weight-image {
    min-height: 300px;
  }

  .service-card img {
    height: 280px;
  }

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

  .why article {
    padding: 22px 28px;
  }

  .why article:nth-child(2) {
    border-right: 0;
  }

  .why article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .site-header {
    padding: 13px 16px;
  }

  .logo {
    font-size: 1.55rem;
  }

  .book-now {
    min-width: auto;
    min-height: 38px;
    padding: 0 14px;
  }

  .hero-image img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .hero-copy {
    padding: 34px 20px 44px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy > p:not(.hero-kicker, .appointment-line),
  .primary-button {
    width: 100%;
  }

  .appointment-line {
    justify-content: center;
  }

  .about,
  .featured-weight,
  .services,
  .founder {
    padding-right: 18px;
    padding-left: 18px;
  }

  .featured-weight {
    margin: 24px 18px 0;
    padding: 0;
  }

  .featured-weight-content {
    padding: 30px 20px 34px;
  }

  .featured-weight-content ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .featured-weight-image {
    min-height: 235px;
  }

  .about,
  .founder {
    gap: 30px;
  }

  .about {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .why {
    padding: 48px 18px;
  }

  .why-grid,
  .service-grid,
  .contact-footer {
    grid-template-columns: 1fr;
  }

  .why article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .why article:last-child {
    border-bottom: 0;
  }

  .services {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .service-card div {
    min-height: 0;
  }

  .service-button {
    width: 100%;
  }

  .founder {
    padding-bottom: 56px;
  }

  .founder > img {
    height: 310px;
    aspect-ratio: 4 / 3;
  }

  .about > img {
    height: 270px;
  }

  .service-card img {
    height: 260px;
  }

  .medical-oversight {
    margin: 0 18px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .weight-management-callout {
    margin: 0 18px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .contact-footer {
    gap: 17px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-logo,
  .copyright {
    grid-column: auto;
  }

  .footer-action {
    margin-top: 5px;
  }

  .footer-action .book-now {
    width: 100%;
  }

  .copyright {
    margin-right: -24px;
    margin-left: -24px;
  }
}
