:root {
  --bg: #fff9f7;
  --surface: #ffffff;
  --surface-soft: #f8edf0;
  --ink: #2b2527;
  --muted: #71656a;
  --accent: #c9778e;
  --accent-strong: #9f5269;
  --sage: #dce8dc;
  --apricot: #f7d7c4;
  --sky: #d9e7ef;
  --butter: #f6edc8;
  --line: #ead8dd;
  --shadow: 0 24px 70px rgba(105, 63, 75, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(217, 231, 239, 0.72) 0%, rgba(255, 249, 247, 0) 32%),
    linear-gradient(215deg, rgba(246, 237, 200, 0.66) 0%, rgba(255, 249, 247, 0) 30%),
    linear-gradient(180deg, var(--bg) 0%, #fff3f5 42%, #f7fbf6 72%, #fffaf0 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 249, 247, 0.88);
  border-bottom: 1px solid rgba(234, 216, 221, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer a:hover,
.contact-strip a:hover {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
  min-height: calc(100svh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(32px, 7vw, 80px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 7% 0 auto;
  z-index: -1;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(248, 220, 224, 0.72), rgba(247, 215, 196, 0.42), rgba(220, 232, 220, 0.52));
  content: "";
  transform: skewY(-5deg);
  transform-origin: left center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 7vw, 6.3rem);
  font-weight: 750;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 720;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 750;
}

.button.primary {
  background: var(--accent-strong);
  color: white;
  border-color: var(--accent-strong);
}

.button.secondary {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.68);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(159, 82, 105, 0.16);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 650;
}

.hero-photo {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(100%, 430px);
}

.hero-photo::before {
  position: absolute;
  inset: 26px -18px -18px 26px;
  z-index: -1;
  border-radius: 28px;
  background: var(--surface-soft);
  content: "";
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(42px, 8vw, 104px);
}

.intro article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.intro article:first-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 215, 196, 0.36));
  border-radius: 22px 0 0 22px;
}

.intro article:last-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(217, 231, 239, 0.42));
  border-radius: 0 22px 22px 0;
}

.intro article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(220, 232, 220, 0.42));
}

.intro span {
  color: var(--accent);
  font-weight: 800;
}

.intro h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.intro p,
.text-flow p,
.text-grid p,
.contact-copy p {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(246, 237, 200, 0.28), rgba(255, 255, 255, 0) 45%),
    linear-gradient(260deg, rgba(217, 231, 239, 0.24), rgba(255, 255, 255, 0) 48%);
}

.text-flow {
  max-width: 760px;
}

.text-flow p {
  margin: 0;
  font-size: 1.06rem;
}

.text-flow p + p {
  margin-top: 20px;
}

.soft-panel {
  margin: 0 clamp(20px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 68px);
  padding-left: clamp(24px, 5vw, 68px);
  background:
    linear-gradient(135deg, rgba(248, 237, 240, 0.95), rgba(247, 215, 196, 0.54) 44%, rgba(220, 232, 220, 0.6));
  border-radius: 28px;
}

.section-heading {
  max-width: 760px;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(32px, 5vw, 58px);
}

.text-grid p {
  margin: 0;
  font-size: 1.03rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 7vw, 82px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(220, 232, 220, 0.35), rgba(255, 255, 255, 0) 38%),
    linear-gradient(300deg, rgba(246, 237, 200, 0.42), rgba(255, 255, 255, 0) 42%);
}

.contact-copy {
  max-width: 690px;
}

.contact-copy p {
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-line strong {
  overflow-wrap: anywhere;
  color: var(--accent-strong);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.locations {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--accent-strong);
  font-weight: 750;
}

@media (max-width: 900px) {
  .hero,
  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-photo {
    justify-self: start;
    width: min(100%, 360px);
  }

  .intro,
  .text-grid {
    grid-template-columns: 1fr;
  }

  .intro article,
  .intro article:first-child,
  .intro article:last-child {
    min-height: 0;
    border-radius: 20px;
  }

  .soft-panel {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-strip {
    flex-direction: column;
  }

  .hero-photo {
    width: 100%;
  }

  .hero-photo::before {
    inset: 18px -8px -10px 18px;
    border-radius: 22px;
  }

  .hero-photo img {
    border-radius: 22px;
  }

  .soft-panel {
    margin-right: 12px;
    margin-left: 12px;
  }

  .footer {
    flex-direction: column;
  }
}
