@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Syne:wght@500;600;700;800&display=swap");

:root {
  --ivory: #faf6ee;
  --ivory-deep: #f0e8d8;
  --champagne: #e8c992;
  --gold: #d4a574;
  --coral: #e8a090;
  --coral-deep: #d48474;
  --pale-blue: #c5d8e0;
  --sea: #9eb8c4;
  --sunlight: #ffe8b8;
  --ink: #3a3228;
  --ink-soft: #5c5348;
  --ink-faint: #8a7f72;
  --pearl: #fff9f2;
  --nacre: linear-gradient(
    145deg,
    #fff9f2 0%,
    #f7ecd8 35%,
    #f0d4c4 55%,
    #d8e4ec 78%,
    #fff4e4 100%
  );
  --sunrise: linear-gradient(
    180deg,
    #ffe8c8 0%,
    #faf0e0 28%,
    #e8f0f4 62%,
    #d4e4ec 100%
  );
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --radius: 1.25rem;
  --shadow-pearl: 0 12px 40px rgba(212, 165, 116, 0.18);
  --max: 72rem;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--sunrise);
  background-attachment: fixed;
  line-height: 1.65;
  letter-spacing: -0.01em;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(255, 232, 184, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(232, 160, 144, 0.28), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(158, 184, 196, 0.35), transparent 55%);
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(250, 246, 238, 0.82);
  border-bottom: 1px solid rgba(232, 201, 146, 0.35);
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8ee, #e8c992 45%, #e8a090 100%);
  box-shadow: 0 0 0 3px rgba(232, 201, 146, 0.35);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--champagne);
  border-radius: 0.5rem;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--nacre);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 201, 146, 0.6);
  color: var(--ink);
  box-shadow: var(--shadow-pearl);
}

/* Buttons — pearl ripples */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 249, 242, 0.55);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

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

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

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

@keyframes pearl-ripple {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.btn-primary {
  background: linear-gradient(135deg, #fff4e4, #e8c992 40%, #e8a090 100%);
  color: var(--ink);
  box-shadow: var(--shadow-pearl);
  border-color: rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 249, 242, 0.55);
  border-color: rgba(158, 184, 196, 0.55);
  color: var(--ink);
}

.btn-ghost:hover {
  color: var(--ink);
  background: rgba(255, 249, 242, 0.85);
}

/* Hero — full bleed, brand-forward */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  z-index: 1;
}

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

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

@keyframes hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06) translate(-1%, -0.5%);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(58, 50, 40, 0.72) 0%, rgba(58, 50, 40, 0.35) 48%, rgba(232, 160, 144, 0.2) 100%),
    linear-gradient(0deg, rgba(58, 50, 40, 0.55) 0%, transparent 45%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5rem);
  color: var(--pearl);
  max-width: 38rem;
  animation: rise-in 0.9s ease-out both;
}

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

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: #fff9f2;
  text-shadow: 0 2px 24px rgba(58, 50, 40, 0.35);
}

.hero-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: var(--sunlight);
}

.hero-support {
  margin: 0 0 1.75rem;
  color: rgba(255, 249, 242, 0.88);
  font-size: 1.05rem;
  max-width: 28rem;
}

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

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.section-head p {
  font-size: 1.05rem;
}

.surface {
  background: rgba(255, 249, 242, 0.55);
  border: 1px solid rgba(232, 201, 146, 0.35);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-pearl);
  backdrop-filter: blur(8px);
}

/* Service list — not card grid default; horizontal bands */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 201, 146, 0.4);
  background: rgba(255, 249, 242, 0.65);
  box-shadow: var(--shadow-pearl);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(212, 165, 116, 0.28);
  color: inherit;
}

.offer-row img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.offer-copy {
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.offer-copy p {
  margin-bottom: 0.85rem;
}

.offer-link {
  font-weight: 600;
  color: var(--coral-deep);
  font-size: 0.92rem;
}

/* Evidence / quotes */
.evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.evidence blockquote {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.evidence cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 6vw, 4rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 18ch;
}

.page-hero .lede {
  font-size: 1.1rem;
  max-width: 36rem;
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) 1fr;
  gap: 1.5rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

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

.blog-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 0.25rem);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
}

.blog-item h2 {
  font-size: 1.35rem;
}

.prose {
  max-width: 42rem;
}

.prose img.cover {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.4rem;
  margin-top: 1.75rem;
}

.outcomes {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.outcomes li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(232, 201, 146, 0.35);
  color: var(--ink-soft);
}

.outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8ee, var(--champagne));
}

/* Contact form */
.form-grid {
  display: grid;
  gap: 1.15rem;
  max-width: 32rem;
}

.form-field label {
  display: block;
  font-weight: 550;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(232, 201, 146, 0.7);
  border-radius: 0.65rem;
  background: rgba(255, 249, 242, 0.9);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--pale-blue);
  outline-offset: 1px;
}

.field-error {
  display: none;
  color: var(--coral-deep);
  font-size: 0.85rem;
  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: var(--coral-deep);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  display: none;
  font-size: 0.95rem;
}

.form-status.is-success {
  display: block;
  background: rgba(197, 216, 224, 0.45);
  border: 1px solid var(--sea);
  color: var(--ink);
}

.form-status.is-error {
  display: block;
  background: rgba(232, 160, 144, 0.25);
  border: 1px solid var(--coral);
  color: var(--ink);
}

/* Launches gallery (custom page) */
.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.launch-piece {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 18rem;
}

.launch-piece img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.launch-piece:hover img {
  transform: scale(1.04);
}

.launch-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(58, 50, 40, 0.75));
  color: var(--pearl);
}

.launch-caption h3 {
  color: var(--pearl);
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.launch-caption p {
  margin: 0;
  color: rgba(255, 249, 242, 0.85);
  font-size: 0.9rem;
}

/* Legal */
.legal-list {
  padding-left: 1.15rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(232, 201, 146, 0.4);
  background: rgba(240, 232, 216, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-grid h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 0.75rem;
}

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

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-grid a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  font-size: 0.85rem;
  color: var(--ink-faint);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 201, 146, 0.3);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 28rem;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  background: var(--nacre);
  border: 1px solid rgba(232, 201, 146, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pearl);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise-in 0.45s ease-out;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

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

.cookie-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.cookie-error {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--coral-deep);
}

.cookie-error.is-visible {
  display: block;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 6rem 0;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Contact details strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-strip dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 0.25rem;
}

.contact-strip dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

/* Motion for section reveals */
.reveal {
  animation: rise-in 0.8s ease-out both;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 246, 238, 0.97);
    border-bottom: 1px solid rgba(232, 201, 146, 0.4);
    padding: 1rem 1.25rem 1.25rem;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-row img {
    min-height: 12rem;
    max-height: 14rem;
  }

  .evidence,
  .launch-grid,
  .footer-grid,
  .contact-strip,
  .blog-item {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }
}
