:root {
  --cream: #f5f0ea;
  --cream-deep: #ebe3d8;
  --warm-white: #fdfbf8;
  --sand: #d9cfc0;
  --gold: #c4a574;
  --gold-light: #e8d5b5;
  --coral: #c97b6f;
  --coral-soft: #e8b5ad;
  --text: #3f3832;
  --text-soft: #6b6259;
  --text-muted: #8f857a;
  --shadow: rgba(63, 56, 50, 0.08);
  --shadow-deep: rgba(63, 56, 50, 0.14);
  --radius: 1.25rem;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Jost", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Ambient background */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 213, 181, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(232, 181, 173, 0.22), transparent 50%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 45%, var(--cream-deep) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(196, 165, 116, 0.25);
}

.orb-2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -100px;
  background: rgba(201, 123, 111, 0.15);
}

.orb-3 {
  width: 260px;
  height: 260px;
  top: 45%;
  right: 15%;
  background: rgba(235, 227, 216, 0.6);
}

/* Hero */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
}

.hero-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}

.photo-frame {
  position: relative;
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  box-shadow:
    0 24px 60px var(--shadow-deep),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  background: var(--sand);
}

.photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 40% 30%, rgba(232, 213, 181, 0.55), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.02);
}

.hero-accent {
  position: absolute;
  top: -8%;
  right: -10%;
  width: 120px;
  height: 120px;
  color: var(--gold);
  opacity: 0.7;
  animation: gentle-spin 80s linear infinite;
}

@keyframes gentle-spin {
  to { transform: rotate(360deg); }
}

.hero-content {
  padding-block: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.titles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.title-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 165, 116, 0.35);
  backdrop-filter: blur(8px);
}

.lead {
  margin: 1.75rem 0 0;
  max-width: 34ch;
  font-size: 1.12rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--warm-white);
  background: linear-gradient(135deg, var(--coral) 0%, #b86a5f 100%);
  box-shadow: 0 10px 28px rgba(201, 123, 111, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(201, 123, 111, 0.36);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(196, 165, 116, 0.4);
}

/* Sections */

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-header.centered {
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
}

.about {
  background: rgba(255, 255, 255, 0.35);
  border-block: 1px solid rgba(196, 165, 116, 0.18);
}

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

.about-grid p {
  margin: 0;
  color: var(--text-soft);
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(196, 165, 116, 0.22);
  box-shadow: 0 12px 36px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px var(--shadow-deep);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-soft);
}

.card em {
  font-style: italic;
  color: var(--coral);
}

/* Quote */

.quote {
  padding-block: clamp(3rem, 6vw, 5rem);
}

blockquote {
  margin: 0;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  border-radius: calc(var(--radius) * 1.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(235, 227, 216, 0.5));
  border: 1px solid rgba(196, 165, 116, 0.25);
  box-shadow: 0 16px 48px var(--shadow);
}

blockquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

/* Contact */

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) * 1.4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(245, 240, 234, 0.9));
  border: 1px solid rgba(196, 165, 116, 0.28);
  box-shadow: 0 20px 56px var(--shadow);
}

.contact-text p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  max-width: 36ch;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(196, 165, 116, 0.2);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-item:hover {
  border-color: rgba(201, 123, 111, 0.45);
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 1.05rem;
  color: var(--text);
}

/* Footer */

.footer {
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 165, 116, 0.22);
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 340px);
  }

  .hero-accent {
    width: 90px;
    height: 90px;
    top: -4%;
    right: -4%;
  }

  .titles,
  .hero-actions {
    justify-content: center;
  }

  .lead {
    margin-inline: auto;
  }

  .about-grid,
  .cards,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-text {
    text-align: center;
  }

  .contact-text p {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 2rem;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-accent {
    animation: none;
  }

  .btn,
  .card,
  .contact-item {
    transition: none;
  }
}
