/* ==========================================================================
   DURA - Master stylesheet
   Clean, friendly, mate-coded London venue booking platform
   Sunset coral accent + warm cream + deep off-black
   ========================================================================== */

:root {
  /* Brand palette */
  --logo-blue:    #0057FF;   /* primary logo blue (globe + wordmark) */
  --coral:        #FF6B4A;   /* sunset coral, the brand accent */
  --coral-deep:   #E5532E;
  --coral-soft:   #FFE5DD;
  --coral-wash:   #FFF3EE;

  --cream:        #FAF8F4;   /* warm off-white */
  --cream-deep:   #F4EFE6;
  --ink:          #1A1A1A;
  --ink-soft:     #2B2B2B;
  --grey:         #6E6E6E;
  --grey-soft:    #9E9E9E;
  --line:         #E8E2D5;
  --line-soft:    #EFEAE0;
  --white:        #FFFFFF;

  /* Type */
  --sans: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 10vw, 140px);
  --max-w: 1320px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  /* Shadows - soft, never harsh */
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
  --shadow:    0 8px 28px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 24px 64px rgba(26, 26, 26, 0.12);
  --shadow-coral: 0 12px 32px rgba(255, 107, 74, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--coral);
  color: var(--white);
}

/* ==========================================================================
   REUSABLE
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0;
  padding: 0;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--coral);
  margin-right: 12px;
}

.eyebrow--coral {
  color: var(--coral-deep);
}

.eyebrow--coral::before {
  background: var(--coral-deep);
}

.section-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(255, 107, 74, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn--large {
  padding: 20px 36px;
  font-size: 16px;
}

.btn--small {
  padding: 12px 22px;
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--coral-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--coral);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.link-arrow:hover {
  gap: 14px;
  color: var(--ink);
  border-color: var(--ink);
}

.link-arrow span {
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover span {
  transform: translateX(2px);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.brand-logo--footer {
  height: 48px;
}

.nav__brand:hover .brand-logo {
  opacity: 0.92;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--coral-deep);
}

.nav__links a:hover::after,
.nav__links a.is-current::after {
  transform: scaleX(1);
}

.nav__links a.is-current {
  color: var(--coral-deep);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer.is-open {
  transform: translateY(0);
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  padding: 80px 32px;
}

.drawer__inner a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  padding: 8px 16px;
  transition: color 0.3s var(--ease);
}

.drawer__inner a:hover { color: var(--coral-deep); }

.drawer__cta {
  margin-top: 20px !important;
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 16px 32px !important;
  border-radius: 999px;
  display: inline-block;
  align-self: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 140px var(--gutter) clamp(80px, 12vw, 140px);
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 74, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}

.hero__copy { max-width: 580px; }

.hero__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 20px 0 28px;
}

.hero__title-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}

.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--grey);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__trust-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.hero__trust-label {
  font-size: 13px;
  color: var(--grey);
}

.hero__trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* Hero visual cards */
.hero__visual {
  position: relative;
  height: 540px;
}

.hero__card {
  position: absolute;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}

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

.hero__card-image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--coral-wash);
}

.hero__card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.hero__card-info {
  padding: 16px 18px;
}

.hero__card-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero__card-meta {
  font-size: 13px;
  color: var(--grey);
}

.hero__card--1 {
  top: 0;
  right: 60px;
  transform: rotate(-3deg);
  z-index: 3;
  animation: float1 8s ease-in-out infinite;
}

.hero__card--2 {
  top: 180px;
  right: 200px;
  transform: rotate(2deg);
  z-index: 2;
  animation: float2 10s ease-in-out infinite;
}

.hero__card--3 {
  top: 340px;
  right: 80px;
  transform: rotate(-1deg);
  z-index: 1;
  animation: float3 9s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-6px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-10px); }
}

.hero__sparkle {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23FF6B4A'%3E%3Cpath d='M12 0 L13 11 L24 12 L13 13 L12 24 L11 13 L0 12 L11 11 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
  animation: twinkle 4s ease-in-out infinite;
}

.hero__sparkle--1 {
  top: -20px;
  right: 380px;
  width: 18px;
  height: 18px;
}

.hero__sparkle--2 {
  bottom: 40px;
  right: 360px;
  width: 28px;
  height: 28px;
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__visual {
    height: 480px;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero__card--1 { right: 30px; }
  .hero__card--2 { right: 180px; }
  .hero__card--3 { right: 50px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 120px; }
  .hero__visual {
    height: auto;
    width: min(100%, 360px);
    max-width: 360px;
    margin-inline: auto;
    display: grid;
    gap: 18px;
    justify-items: center;
    padding-inline: 10px;
  }
  .hero__card {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    transform: none !important;
    animation: none;
  }
  .hero__card img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 190px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero__card--1,
  .hero__card--2,
  .hero__card--3 {
    inset: auto;
  }
  .hero__cta .btn { flex: 1; min-width: 140px; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 32px var(--gutter);
  text-align: center;
}

.strip__line {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
  margin: 0;
}

.strip__accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  margin-left: 6px;
}

/* ==========================================================================
   WHY DURA
   ========================================================================== */

.why {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}

.why__head {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  text-align: center;
}

.why__head .eyebrow {
  margin-bottom: 24px;
}

.why__head .eyebrow::before { display: none; }
.why__head .eyebrow {
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--coral-deep);
}

.why__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why__card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--coral-soft);
}

.why__num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--coral-deep);
  margin-bottom: 24px;
  font-weight: 400;
}

.why__card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why__card p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__card { padding: 32px 28px; }
}

/* ==========================================================================
   FIND MY VENUE INVITE (homepage)
   ========================================================================== */

.quiz-invite {
  padding: var(--section-pad) var(--gutter);
  background: var(--coral-wash);
}

.quiz-invite__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quiz-invite__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 24px;
}

.quiz-invite__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}

.quiz-invite__sub {
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.55;
}

/* Chat assistant preview mockup */
.chat-preview {
  position: relative;
  height: 360px;
}

.chat-preview__window {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-preview__bubble {
  max-width: 92%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.45;
}

.chat-preview__bubble--them {
  align-self: flex-start;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
}

.chat-preview__bubble--you {
  align-self: flex-end;
  background: var(--coral);
  color: var(--white);
}

@media (max-width: 900px) {
  .quiz-invite__inner { grid-template-columns: 1fr; gap: 40px; }
  .chat-preview { height: 300px; max-width: 380px; }
}

/* ==========================================================================
   FEATURED VENUES
   ========================================================================== */

.featured {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}

.featured__head {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}

.featured__head .eyebrow {
  margin-bottom: 24px;
}

.featured__sub {
  font-size: 17px;
  color: var(--grey);
  margin-top: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.venue-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .venue-grid { grid-template-columns: 1fr; }
}

.venue-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid var(--line-soft);
}

.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.venue-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--coral-wash);
}

.venue-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.venue-card:hover .venue-card__media img {
  transform: scale(1.04);
}

.venue-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.venue-card__body { padding: 20px 22px 24px; }

.venue-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.venue-card__area {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.venue-card__price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.venue-card__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.venue-card__vibe {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 14px;
  min-height: 44px;
}

.venue-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.venue-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral);
}

.featured__more {
  text-align: center;
  margin-top: 56px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how {
  padding: var(--section-pad) var(--gutter);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how__head {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  text-align: center;
}

.how__head .eyebrow {
  margin-bottom: 24px;
}

.how__steps {
  max-width: var(--max-w);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: how;
}

@media (max-width: 900px) {
  .how__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .how__steps { grid-template-columns: 1fr; }
}

.how__step {
  padding: 32px 24px;
  position: relative;
}

.how__step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.9;
}

.how__step h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.how__step p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}

/* ==========================================================================
   FOUNDER STRIP
   ========================================================================== */

.founder-strip {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}

.founder-strip__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-strip__line {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}

.founder-strip__line em {
  font-style: italic;
}

.founder-strip__attrib {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.founder-strip__photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--coral-wash) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.founder-strip__photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--coral);
  border-radius: calc(var(--radius-lg) - 12px);
  opacity: 0.3;
}

.founder-strip__placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--coral-deep);
}

@media (max-width: 768px) {
  .founder-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-strip__visual { order: -1; }
}

/* ==========================================================================
   SAFETY NET
   ========================================================================== */

.safety {
  padding: var(--section-pad) var(--gutter);
  background: var(--ink);
  color: var(--cream);
}

.safety__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.safety__inner .eyebrow {
  color: var(--coral);
}

.safety__inner .eyebrow::before {
  background: var(--coral);
}

.safety__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 24px 0 28px;
  color: var(--cream);
}

.safety__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

.safety__body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.75);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   CLOSING CTA
   ========================================================================== */

.closing {
  padding: clamp(80px, 14vw, 180px) var(--gutter);
  background: var(--cream);
  text-align: center;
}

.closing__inner {
  max-width: 860px;
  margin: 0 auto;
}

.closing__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 6.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 48px;
}

.closing__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}

.closing__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--gutter) 40px;
}

.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  line-height: 0;
}

.footer__brand .brand-logo--footer {
  filter: brightness(1.08);
}

.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(250, 248, 244, 0.6);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer__heading {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(250, 248, 244, 0.75);
  transition: color 0.3s var(--ease);
}

.footer__col a:hover { color: var(--coral); }

.footer__base {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 248, 244, 0.5);
}

.footer__hand {
  font-family: var(--serif);
  font-style: italic;
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
