@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500&family=Montserrat:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #6f6f6f;
  --pink: #f5b5bf;
  --pink-deep: #c93b66;
  --sand: #f2ebe2;
  --line: rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

a:hover {
  opacity: 0.75;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 4.5vw 10px;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.nav-left {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

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

.nav-logo img {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.nav-subtitle {
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-right {
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-weight: 400;
}

.nav-link.active {
  font-weight: 700;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  color: var(--ink);
}

.hero {
  background: var(--pink);
  padding: 0;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.quote {
  background: var(--pink-deep);
  color: #ffffff;
  text-align: center;
  padding: 22px 8vw;
  font-family: "Palatino", "Palatino Linotype", "Book Antiqua", serif;
  font-style: normal;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  letter-spacing: 0.02em;
}
.pricing {
  padding: 2px;
}
.pricing h1 {
  margin: 0.3em;
  text-align: left;
}

.split-section {
  background: #f7d3d4;
  padding: 48px 8vw;
}

.split-section.alt {
  background: #f1c1c5;
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split-media img {
  width: 80%;
  height: auto;
  display: block;
}

.nav-left a {
    margin-right: 20px;
}

.mirror {
  width: 60% !important;
}

@media (max-width: 820px) {
  .split-media img {
    width: 100% !important;
  }
  .nav-left a {
    margin-right: 0;
  }
}

.split-text h2 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.02em;
}

.split-text p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: #2f2f2f;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 22px;
  background: #9ad46b;
  color: #111111;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.cta-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.story {
  padding: 48px 12vw 64px;
  text-align: center;
}

.story p {
  margin: 0 auto 18px;
  max-width: 880px;
  line-height: 1.7;
  color: #3e3e3e;
  font-size: 0.98rem;
}

.story .emphasis {
  font-weight: 600;
  color: #2c2c2c;
}

.story .signature {
  margin-top: 6px;
  font-style: italic;
}

.site-footer {
  background: var(--sand);
  padding: 42px 7vw 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 0.8rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #444444;
}

.footer-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 30px 0 18px;
}

.payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 0 16px;
}

.payment {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.65rem;
  background: #ffffff;
  color: #333333;
  min-width: 42px;
  text-align: center;
}

.footer-copy {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #4a4a4a;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  padding: 34px 12vw;
}

.page-content h1 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.page-content p {
  max-width: 720px;
  line-height: 1.7;
  color: #3e3e3e;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 10px;
  }

  .nav-left,
  .nav-right {
    justify-self: center;
  }

  .nav-center {
    order: 1;
  }

  .nav-right {
    order: 2;
    margin-top: 8px;
  }

  .nav-left {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
  }

  .story {
    padding: 40px 8vw 54px;
  }

  .split-inner {
    grid-template-columns: 1fr;
  }

  .split-section.alt .split-text {
    order: 1;
  }

  .split-section.alt .split-media {
    order: 2;
  }
}
