:root {
  --ivory: #fbf6ec;
  --ivory-deep: #f3ead8;
  --champagne: #e8c98a;
  --gold: #c9a24a;
  --coral: #e8a07a;
  --blush: #f2c4b0;
  --pale-blue: #d6e8f2;
  --sea: #b7d4e4;
  --ink: #2a2a28;
  --ink-soft: #5a5750;
  --nacre: linear-gradient(145deg, #fffaf0 0%, #f7ebd4 35%, #f0d9a8 55%, #e8bba0 78%, #d6e8f2 100%);
  --sunrise: linear-gradient(180deg, #fff8e8 0%, #f7e4c8 28%, #f2c4b0 62%, #c9dceb 100%);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(90, 70, 40, 0.08);
  --font-display: "Outfit", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 248, 232, 0.95), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(214, 232, 242, 0.7), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(242, 196, 176, 0.35), transparent 55%),
    var(--ivory);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 246, 236, 0.82);
  border-bottom: 1px solid rgba(201, 162, 74, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--nacre);
  box-shadow: 0 0 0 4px rgba(214, 232, 242, 0.55), inset 0 -4px 8px rgba(232, 160, 122, 0.25);
  animation: pearl-float 5s ease-in-out infinite;
}

@keyframes pearl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--nacre);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 6px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-pearl {
  color: var(--ink);
  background: var(--nacre);
  box-shadow: var(--shadow);
}

.btn-pearl::before,
.btn-pearl::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 162, 74, 0.35);
  opacity: 0;
  pointer-events: none;
}

.btn-pearl:hover::before {
  animation: pearl-ripple 1.1s ease-out;
}

.btn-pearl:hover::after {
  animation: pearl-ripple 1.1s ease-out 0.18s;
}

@keyframes pearl-ripple {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.35); opacity: 0; }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(201, 162, 74, 0.35);
  color: var(--ink);
}

/* Hero — full-bleed photographic plane */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: #fffaf4;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 42, 40, 0.15) 0%, rgba(42, 42, 40, 0.55) 55%, rgba(42, 42, 40, 0.78) 100%),
    linear-gradient(90deg, rgba(232, 160, 122, 0.18), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.5rem;
  max-width: 38rem;
  animation: rise-in 0.9s ease both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-line {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  max-width: 32rem;
  color: rgba(255, 250, 244, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head h2,
.page-title,
.legal-page h1,
.article-title {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.lede {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.05rem;
}

.surface {
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.offer-list li {
  padding-left: 1.2rem;
  position: relative;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--nacre);
  box-shadow: 0 0 0 3px rgba(214, 232, 242, 0.7);
}

/* Service previews — interaction containers, not decorative cards for cards' sake */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.65);
  border: 1px solid rgba(201, 162, 74, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  color: inherit;
}

.service-link img {
  width: 140px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.service-link h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.service-link p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.quote-band {
  background: var(--sunrise);
  border-block: 1px solid rgba(201, 162, 74, 0.2);
}

.quote {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
  font-weight: 500;
}

.quote cite {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Page heroes (interior) */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  max-height: 420px;
}

.cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.prose {
  max-width: 42rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 2rem 0 0.75rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.outcome-grid li {
  list-style: none;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid rgba(201, 162, 74, 0.18);
}

.price-note {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}

/* Placements custom page */
.placement-flow {
  display: grid;
  gap: 1.5rem;
}

.placement-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.step-pearl {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--nacre);
  box-shadow: var(--shadow);
}

.placement-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.placement-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.placement-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.placement-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(42, 42, 40, 0.72));
  color: #fffaf4;
  font-size: 0.92rem;
}

.placement-gallery figure:first-child {
  grid-row: span 2;
}

.placement-gallery figure:first-child img {
  min-height: 460px;
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.25rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  text-decoration: none;
  align-items: center;
}

.blog-item:hover {
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

.blog-item h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}

.blog-item p {
  margin: 0;
  color: var(--ink-soft);
}

/* Forms */
.form-panel {
  max-width: 36rem;
  padding: 1.5rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 74, 0.35);
  background: rgba(255, 255, 255, 0.65);
  font: inherit;
  color: var(--ink);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  display: none;
  color: #9a3b2a;
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

.form-field.is-invalid .field-error {
  display: block;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #c45a45;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(183, 212, 228, 0.45);
  border: 1px solid rgba(105, 150, 170, 0.45);
}

.form-status.is-error {
  display: block;
  background: rgba(242, 196, 176, 0.55);
  border: 1px solid rgba(201, 100, 74, 0.4);
}

.island-error {
  color: #9a3b2a;
  font-size: 0.9rem;
}

/* Legal */
.legal-page {
  padding-bottom: 4rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin-top: 2rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem 0;
  background: rgba(251, 246, 236, 0.94);
  border-top: 1px solid rgba(201, 162, 74, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 -12px 30px rgba(90, 70, 40, 0.08);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-inner p {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background:
    linear-gradient(180deg, transparent, rgba(214, 232, 242, 0.35)),
    rgba(243, 234, 216, 0.55);
  border-top: 1px solid rgba(201, 162, 74, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.footer-note,
.footer-grid p {
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem !important;
  color: var(--ink) !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 162, 74, 0.18);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cta-band {
  text-align: center;
  padding: 3.5rem 1rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(251, 246, 236, 0.97);
    border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.25rem;
  }

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

  .split,
  .service-grid,
  .footer-grid,
  .blog-item,
  .placement-gallery,
  .outcome-grid,
  .service-link {
    grid-template-columns: 1fr;
  }

  .service-link img {
    width: 100%;
    height: 180px;
  }

  .placement-gallery figure:first-child {
    grid-row: auto;
  }

  .placement-gallery figure:first-child img {
    min-height: 240px;
  }
}
