/* CAMILA-STYLE — bold, warm, clear. Inspired by camilaraedemo.sugarstudiosdesign.com
   Big headlines, dusty pink/cream, generous spacing, very obvious CTAs. */

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

:root {
  /* Luxury teal palette — clean white with deep teal accent */
  --cream:    #ffffff;
  --blush:    #f3eee6;     /* warm sand panels */
  --rose:     #c9a87a;     /* champagne gold */
  --terra:    #0e3b3a;     /* deep dark teal — main accent */
  --terra-dk: #082625;
  --teal-mid: #1d5e5c;
  --ink:      #0a1a1a;     /* near-black, slight teal tint */
  --ink-soft: #5a6463;
  --line:     #e6e0d4;

  --serif: "Cormorant Garamond", "Tiempos Headline", "Cormorant", "Times New Roman", serif;
  --display: "Italiana", "Cormorant Garamond", serif;
  --script: "Allura", "Caveat", "Brush Script MT", cursive;
  --sans:  "DM Sans", "Inter", "Helvetica Neue", system-ui, sans-serif;
}

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Body text — larger, clearer */
p { font-size: 17px; line-height: 1.7; color: var(--ink); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--terra); color: var(--cream); }

/* shared minimal eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ============ NAV ============ */
.cnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.cnav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 22px 40px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.cnav-brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em;
  color: var(--terra);
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
}
.cnav-brand .dot { color: var(--rose); margin: 0 4px; font-weight: 400; }
.cnav-brand .sub {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-transform: none; margin-top: 6px;
  font-weight: 400;
}
.cnav-links {
  display: flex; gap: 32px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft);
}
.cnav-links a:hover, .cnav-links a.active { color: var(--terra); }
.cnav-cta {
  justify-self: end;
  background: var(--terra); color: var(--cream);
  padding: 14px 26px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.cnav-cta:hover { background: var(--terra-dk); }

/* ============ HERO — image-driven, dark overlay ============ */
.chero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--terra-dk);
}
.chero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.85) brightness(0.9);
  z-index: 0;
}
.chero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,38,37,0.20) 0%, rgba(8,38,37,0.10) 35%, rgba(8,38,37,0.85) 100%),
    linear-gradient(90deg, rgba(8,38,37,0.55) 0%, rgba(8,38,37,0.05) 55%);
}
.chero-content {
  position: relative; z-index: 2;
  max-width: 1280px; width: 100%;
  margin: 0 auto;
  padding: 0 40px 96px;
  color: var(--cream);
}
.chero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 28px;
}
.chero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--cream);
  max-width: 12ch;
}
.chero h1 em {
  font-style: italic;
  color: var(--rose);
  font-family: var(--serif);
  font-weight: 500;
}
.chero-sub {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250,245,238,0.85);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}
.chero-actions {
  display: flex; gap: 28px; align-items: center;
  flex-wrap: wrap;
}
.chero-link {
  color: var(--cream);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(250,245,238,0.4);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}
.chero-link:hover { border-color: var(--rose); }

.btn-fill {
  background: var(--terra); color: var(--cream);
  padding: 18px 36px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-fill:hover { background: var(--terra-dk); }
.btn-fill.terra { background: var(--terra); }
.btn-fill.terra:hover { background: var(--terra-dk); }
.btn-fill.cream { background: var(--cream); color: var(--terra); }
.btn-fill.cream:hover { background: var(--rose); color: var(--terra-dk); }
.btn-fill.gold { background: var(--rose); color: var(--terra); }
.btn-fill.gold:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  border: 1.5px solid var(--terra); color: var(--terra);
  padding: 17px 32px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--terra); color: var(--cream); }

/* ============ "AS SEEN IN" / TRUST STRIP ============ */
.cstrip {
  background: var(--terra);
  color: var(--cream);
  padding: 36px 40px;
  text-align: center;
}
.cstrip-label {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 16px;
}
.cstrip-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.28em;
  color: var(--cream); opacity: 0.94;
  text-transform: uppercase;
  font-weight: 500;
}
.cstrip-row .dot { color: var(--rose); opacity: 0.7; }

/* ============ "WHO IS THIS FOR" — split with image ============ */
.cwho {
  max-width: 1240px; margin: 0 auto;
  padding: 130px 40px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}
.cwho-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cwho-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88); }
.cwho-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cwho-text h2 em { font-style: italic; color: var(--terra); }
.cwho-text p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 480px;
}
.cwho-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.cwho-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.4;
  color: var(--ink);
}

/* ============ HOW WE WORK — service cards ============ */
.cwork {
  background: var(--cream);
  padding: 100px 40px 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cwork-inner { max-width: 1280px; margin: 0 auto; }
.cwork-head { text-align: center; margin-bottom: 56px; }
.cwork-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cwork-head h2 em { font-style: italic; color: var(--terra); }
.cwork-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cwork-card {
  display: flex; flex-direction: column;
}
.cwork-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
}
.cwork-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.88);
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.cwork-card:hover .cwork-card-img img { transform: scale(1.04); }
.cwork-card-body { padding: 0; }
.cwork-card-num {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--ink-soft); margin-bottom: 12px;
  font-weight: 500;
}
.cwork-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cwork-card h3 em { font-style: italic; color: var(--terra); }
.cwork-card p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink); margin-bottom: 24px;
}
.cwork-card-link {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 4px;
  display: inline-block;
}

/* ============ IMAGE PULL-QUOTE — full bleed ============ */
.cpull {
  position: relative;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cpull-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  z-index: 0;
}
.cpull-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.45) 0%, rgba(8,38,37,0.62) 100%);
  z-index: 1;
}
.cpull-quote {
  position: relative; z-index: 2;
  max-width: 980px;
  padding: 0 48px;
  text-align: center;
  color: var(--cream);
  margin: 0;
}
.cpull-mark {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 8px;
}
.cpull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--cream);
}
.cpull-quote p em { color: var(--rose); font-style: italic; }
.cpull-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

/* ============ MEET TORUN ============ */
.cmeet {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: center;
}
.cmeet-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cmeet-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.cmeet-img-frame {
  position: absolute; inset: -20px 20px 20px -20px;
  border: 1.5px solid var(--rose);
  z-index: -1;
}
.cmeet-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.cmeet-text h2 em { font-style: italic; color: var(--terra); }
.cmeet-text p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink); margin-bottom: 18px;
  max-width: 520px;
  font-weight: 400;
}
.cmeet-text .more { margin-top: 24px; }

/* ============ TESTIMONIALS — two large editorial quotes ============ */
.cquotes {
  padding: 110px 40px 120px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.cquotes-inner { max-width: 1240px; margin: 0 auto; }
.cquotes-head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 760px;
}
.cquotes-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  margin-top: 8px;
  letter-spacing: -0.015em;
}
.cquotes-head h2 em { font-style: italic; color: var(--terra); }
.cquotes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
.cquote {
  margin: 0;
  border-top: 1px solid var(--terra);
  padding-top: 28px;
}
.cquote blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.cquote blockquote em { font-style: italic; color: var(--terra); }
.cquote p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 44ch;
}
.cquote figcaption {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}

/* ============ FREE GUIDE ============ */
.cguide {
  background: var(--terra);
  color: var(--cream);
  padding: 110px 40px;
}
.cguide-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1fr;
  gap: 80px; align-items: center;
}
.cguide-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cguide-img img { width: 100%; height: 100%; object-fit: cover; }
.cguide-text .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 24px; display: inline-block;
}
.cguide-text h2 { color: var(--cream); }
.cguide-text h2 em { color: var(--rose); }
.cguide-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  margin-bottom: 28px;
}
.cguide-text h2 em { font-style: italic; color: var(--terra); }
.cguide-text p {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 480px; margin-bottom: 32px;
}
.cguide-form { display: flex; max-width: 480px; }
.cguide-form input {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--cream);
  border-right: none;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  font-family: var(--sans);
}
.cguide-form button {
  background: var(--rose); color: var(--terra);
  border: none;
  padding: 16px 28px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cguide-form button:hover { background: var(--cream); }

/* ============ FINAL CTA ============ */
.cfinal {
  position: relative;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--terra-dk);
}
.cfinal-bg {
  position: absolute; inset: 0;
  background: url('img/editorial-sunset.jpg') center / cover;
  opacity: 0.55;
  filter: saturate(0.85);
  z-index: 0;
}
.cfinal::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.35) 0%, rgba(8,38,37,0.55) 100%);
  z-index: 0;
}
.cfinal-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.cfinal .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 24px; display: inline-block;
}
.cfinal h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  margin-bottom: 32px;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.cfinal h2 em { font-style: italic; color: var(--rose); }
.cfinal p {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: rgba(250,245,238,0.88);
  max-width: 540px; margin: 0 auto 48px;
}
.cfinal .btn-fill {
  background: var(--cream); color: var(--terra);
}
.cfinal .btn-fill:hover { background: var(--rose); color: var(--terra-dk); }

/* ============ FOOTER ============ */
.cfoot {
  background: var(--terra-dk);
  color: var(--cream);
  padding: 80px 40px 32px;
}
.cfoot-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.cfoot-brand {
  font-family: var(--sans); font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cream);
}
.cfoot-brand .dot { color: var(--rose); margin: 0 4px; font-weight: 400; }
.cfoot-brand .sub {
  display: block; font-family: var(--sans); font-size: 9px;
  letter-spacing: 0.4em; color: var(--rose);
  text-transform: uppercase; margin-top: 6px; font-weight: 500;
}
.cfoot-brand p {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: rgba(250,245,238,0.6);
  margin-top: 16px; max-width: 320px;
}
.cfoot h4 {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 18px; font-weight: 500;
}
.cfoot ul { list-style: none; }
.cfoot li { margin-bottom: 10px; }
.cfoot a {
  color: rgba(250,245,238,0.78);
  font-size: 14px;
  transition: color 0.2s;
}
.cfoot a:hover { color: var(--cream); }
.cfoot-bottom {
  border-top: 1px solid rgba(250,245,238,0.14);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250,245,238,0.5);
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .chero { min-height: 78vh; }
  .chero-content { padding: 0 24px 64px; }
  .cmeet, .cguide-inner, .cwho { grid-template-columns: 1fr; gap: 40px; }
  .cwho { padding: 70px 24px; }
  .cwork-grid { grid-template-columns: 1fr; gap: 40px; }
  .cquotes-grid { grid-template-columns: 1fr; gap: 40px; }
  .cfoot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cnav-links { display: none; }
  .cnav-inner { grid-template-columns: 1fr auto; }
  .cstrip-row { gap: 24px; font-size: 16px; }
  .cmeet-img-frame { display: none; }
  .cpull { height: 60vh; }
}
