/* Sydney Edited — candlelit gold world
   ivory #FBF5EC · chocolate #2B1D16 · old gold #B98A2F · bright gold #E3C371 · oxblood #7A2E24 · blush #F3DCD3 */

:root {
  --ivory: #FBF5EC;
  --ink: #2B1D16;
  --ink-soft: #3F3129;
  --muted: #7A6A5C;
  --gold: #B98A2F;
  --gold-bright: #E3C371;
  --oxblood: #7A2E24;
  --blush: #F3DCD3;
  --blush-text: #F3DCD3;
  --sand: #EBDCC5;
  --white: #FFFFFF;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", "Segoe Script", cursive;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 16px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 400 17px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-bright); color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--ivory); padding: 10px 16px; border-radius: 999px; z-index: 100; }
.skip:focus { left: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background-color .3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(43, 29, 22, .5); }
.btn-sm { padding: 11px 22px; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #C6963A; }
.btn-outline-gold { border-color: var(--gold); color: var(--ivory); }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); }
.kicker-ox { color: var(--oxblood); }
.kicker-gold { color: var(--gold-bright); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding-top: 6px; }
.cta-note { font-size: 14px; }

/* Nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter); gap: 24px;
}
.masthead { position: relative; display: inline-flex; align-items: flex-end; text-decoration: none; height: 44px; }
.masthead-word { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: .04em; }
.masthead-script { position: absolute; left: 106px; top: -14px; font-family: var(--script); font-weight: 600; font-size: 28px; color: var(--gold); transform: rotate(-5deg); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) { font-weight: 500; font-size: 15px; text-decoration: none; }
.nav-links a:not(.btn):hover { text-decoration: underline; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 0 var(--gutter) 16px; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--sand); text-decoration: none; font-weight: 500; }

/* Hero */
.hero { position: relative; min-height: 720px; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43, 29, 22, .12) 0%, rgba(43, 29, 22, .74) 100%); }
.hero-copy { padding: 0 var(--gutter) 64px; display: flex; flex-direction: column; gap: 18px; max-width: 960px; color: var(--ivory); }
.hero h1 { font-weight: 500; font-size: clamp(2.6rem, 6vw, 5.25rem); line-height: 1.04; letter-spacing: -.01em; }
.hero .lede { font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.6; color: #F2E7D8; max-width: 44rem; }
.hero .cta-note, .hero .cta-note a { color: #F2E7D8; }
.hero .kicker { color: var(--gold-bright); }
.hero-copy > * { animation: rise .9s var(--ease) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }

/* Proof bar */
.proof { display: flex; justify-content: center; gap: clamp(32px, 7vw, 96px); padding: 44px var(--gutter); background: var(--white); flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.proof-big { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.proof-label { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* Section heads */
.section-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.section-head h2, .edit-head h2, .feed-head h2, .collab h2, .story h2 { font-size: clamp(2rem, 3.2vw, 2.6rem); }
.wins-nav { display: none; align-items: center; justify-content: space-between; margin: -8px 0 16px; }
.wins-count { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--muted); font-variant-numeric: tabular-nums; }
.wins-arrows { display: flex; gap: 8px; }
.arrow { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid var(--ink); background: var(--white); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background-color .3s, color .3s, opacity .3s; }
.arrow:hover { background: var(--ink); color: var(--ivory); }
.arrow:disabled { opacity: .3; cursor: default; }
.arrow:disabled:hover { background: var(--white); color: var(--ink); }

/* Reels */
.reel { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 9 / 16; background: var(--sand); }
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.reel:hover img { transform: scale(1.04); }
.play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 999px; background: rgba(251, 245, 236, .92); display: grid; place-items: center; box-shadow: 0 8px 24px -8px rgba(43, 29, 22, .6); }
.play svg { fill: var(--ink); margin-left: 3px; }
.play-sm { width: 28px; height: 28px; left: auto; top: 12px; right: 12px; translate: 0; background: rgba(43, 29, 22, .35); box-shadow: none; }
.play-sm svg { fill: var(--ivory); width: 12px; height: 12px; margin-left: 2px; }
.reel-tag { position: absolute; left: 14px; bottom: 14px; font-size: 13px; font-weight: 700; color: var(--ivory); text-shadow: 0 1px 8px rgba(43, 29, 22, .9); }

/* Inline video reels */
.reel-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--ink); }
.reel-video .play { border: 0; cursor: pointer; transition: opacity .4s var(--ease), transform .5s var(--ease); }
.reel-video .play:hover { transform: translate(-50%, -50%) scale(1.06); }
.reel-video.is-playing .play { opacity: 0; pointer-events: none; }
.reel-video .sound { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 999px; border: 0; background: rgba(43, 29, 22, .55); color: var(--ivory); display: grid; place-items: center; cursor: pointer; }
.reel-video .sound[hidden] { display: none; }
.reel-video .sound[aria-pressed="false"] .sound-on { display: none; }
.reel-video .sound svg { fill: currentColor; }
.reel-link { text-decoration: none; }
.reel-link:hover { text-decoration: underline; }

/* Featured wins */
.wins { padding: 88px var(--gutter); }
.wins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.win { background: var(--white); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.win h3 { font-size: 22px; }
.win p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* Quote */
.quote { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--ivory); padding: clamp(56px, 7vw, 88px) var(--gutter); display: flex; justify-content: center; }
.quote-bg { position: absolute; inset: -4%; width: 108%; height: 108%; object-fit: cover; z-index: -2; filter: blur(2px) saturate(.85); transform: scale(1.02); }
.quote::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43, 29, 22, .78), rgba(122, 46, 36, .72) 55%, rgba(43, 29, 22, .86)); }
.quote::before { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 18px; bottom: 18px; border: 1px solid rgba(227, 195, 113, .35); border-radius: 22px; pointer-events: none; }
.quote-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 58rem; text-align: center; }
.quote-mark { font-family: var(--display); font-weight: 700; font-size: clamp(4rem, 7vw, 6rem); line-height: .55; color: var(--gold-bright); opacity: .9; margin-bottom: 4px; }
.quote blockquote { margin: 0; font-family: var(--display); font-weight: 500; font-style: italic; font-size: clamp(1.6rem, 2.9vw, 2.7rem); line-height: 1.28; text-wrap: balance; text-shadow: 0 2px 20px rgba(43, 29, 22, .6); }
.quote-by { margin-top: 14px; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); }
.quote-by::before { content: ""; display: block; width: 44px; height: 1.5px; background: var(--gold-bright); margin: 0 auto 16px; }

/* Work with us */
.collab { background: var(--ink); color: var(--ivory); padding: 96px var(--gutter); display: grid; grid-template-columns: 1fr 520px; gap: 72px; align-items: start; }
.collab-copy { display: flex; flex-direction: column; gap: 20px; }
.collab h2 { font-weight: 500; font-size: clamp(2.6rem, 4.2vw, 3.75rem); line-height: 1.1; }
.collab-copy > p:not(.kicker) { color: #E8DCCB; max-width: 40rem; }
.checklist { background: var(--white); color: var(--ink); border-radius: 18px; padding: 32px 36px; display: flex; flex-direction: column; gap: 16px; }
.checklist h3 { font-family: var(--body); font-size: 16px; font-weight: 700; }
.checklist li { position: relative; padding-left: 20px; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.checklist li + li { margin-top: 12px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 99px; background: var(--gold); }

/* The Edit */
.edit { background: var(--white); padding: 72px var(--gutter) 88px; }
.edit-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.edit-sub { font-size: 16px; color: var(--muted); white-space: nowrap; }
.hairline { flex: 1; height: 1px; background: var(--gold); opacity: .45; }
.edit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tile { display: flex; flex-direction: column; gap: 10px; text-decoration: none; }
.tile img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; transition: transform 1s var(--ease); }
.tile:hover img { transform: translateY(-4px); }
.tile-label { font-weight: 700; font-size: 16px; letter-spacing: .1em; text-transform: uppercase; }
.tile-sub { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Feed */
.feed { padding: 80px var(--gutter); background: var(--ivory); }
.feed-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.feed-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.1rem); }
.feed-actions { display: flex; align-items: center; gap: 14px; }
.feed-note { font-size: 14px; color: var(--muted); }
.feed-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.feed-grid .reel-sm { border-radius: 10px; }
.feed-caption { position: absolute; left: 10px; bottom: 10px; font-size: 12px; font-weight: 700; color: var(--ivory); text-shadow: 0 1px 6px rgba(43, 29, 22, .85); }

/* Story */
.story { display: grid; grid-template-columns: 520px 1fr; gap: 64px; align-items: center; padding: 88px var(--gutter); }
.story-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 18px; }
.story-copy { display: flex; flex-direction: column; gap: 22px; max-width: 40rem; }
.story h2 { font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.75rem); line-height: 1.18; }
.story p:not(.kicker) { color: var(--ink-soft); }

/* Agency */
.agency { background: var(--oxblood); color: var(--blush-text); padding: 80px var(--gutter); display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: center; }
.agency-copy { display: flex; flex-direction: column; gap: 22px; }
.agency-copy .kicker a { color: inherit; }
.agency-mark { font-size: clamp(2.6rem, 4.6vw, 4rem); line-height: 1.03; color: var(--ivory); letter-spacing: .01em; }
.agency-mark sup { font-size: .5em; color: var(--gold-bright); vertical-align: top; line-height: 1; margin-left: .08em; }
.agency-hook { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(1.25rem, 1.9vw, 1.6rem); line-height: 1.3; }
.agency-copy > p:not(.kicker):not(.agency-hook):not(.venues-label) { max-width: 36rem; }
.venues-label { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); padding-top: 6px; }
.venues { display: flex; flex-wrap: wrap; gap: 10px; max-width: 600px; }
.venues li { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: var(--ivory); border: 1.5px solid var(--gold-bright); border-radius: 999px; padding: 12px 20px; }
.venues .venue-next { background: var(--gold-bright); color: var(--ink); border-color: var(--gold-bright); }
.agency .cta-note a { color: inherit; }
.agency .btn-gold { background: var(--gold-bright); }
.agency-photo { margin: 0; position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 460 / 620; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.agency-photo img { width: 100%; height: 100%; object-fit: cover; }
.agency-photo figcaption { position: absolute; left: 20px; bottom: 20px; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ivory); text-shadow: 0 1px 8px rgba(43, 29, 22, .9); }

/* Footer */
.footer { background: var(--ink); color: #C9B69A; padding: 40px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.footer-mark { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ivory); letter-spacing: .04em; }
.footer a { color: inherit; }

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy > * { animation: none; }
  .reel img, .tile img, .btn { transition: none; }
}

/* Tablet */
@media (max-width: 1100px) {
  .wins-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .collab { grid-template-columns: 1fr; gap: 40px; }
  .edit-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story-img { max-height: 380px; aspect-ratio: auto; }
  .agency { grid-template-columns: 1fr; }
  .agency-photo { max-width: 460px; }
}

/* Mobile */
@media (max-width: 720px) {
  body { font-size: 15px; }
  .nav { padding: 14px var(--gutter); }
  .masthead-word { font-size: 19px; }
  .masthead-script { left: 84px; top: -12px; font-size: 22px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle-btn { display: inline-flex; }
  .hero { min-height: 620px; }
  .hero-copy { padding-bottom: 32px; gap: 14px; }
  .hero .cta-row { flex-direction: column; align-items: stretch; }
  .hero .btn { width: 100%; }
  .hero .cta-note { text-align: center; font-size: 13px; }
  .proof { justify-content: space-between; gap: 16px; padding: 28px var(--gutter); }
  .proof-item { align-items: flex-start; text-align: left; flex: 1 1 0; min-width: 0; }
  .proof-label { line-height: 1.35; }
  .proof-wide { display: none; }
  .proof-big { font-size: 1.5rem; }
  .proof-label { font-size: 10px; letter-spacing: .12em; }
  .wins { padding: 48px var(--gutter); }
  .wins-nav { display: flex; }
  .wins-grid { display: flex; gap: var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 8px; scrollbar-width: none; scroll-padding: 0 var(--gutter); }
  .wins-grid::-webkit-scrollbar { display: none; }
  .win { flex: 0 0 calc(100vw - 2 * var(--gutter)); scroll-snap-align: start; scroll-snap-stop: always; padding: 12px; }
  .win h3 { font-size: 19px; }
  .win p { font-size: 14px; }
  .play { width: 60px; height: 60px; }
  .quote { padding: 48px 24px; }
  .quote::before { left: 14px; right: 14px; top: 14px; bottom: 14px; border-radius: 16px; }
  .collab { padding: 52px var(--gutter); gap: 18px; }
  .collab .cta-row { flex-direction: column; align-items: stretch; }
  .checklist { padding: 20px; }
  .edit { padding: 40px var(--gutter) 48px; }
  .edit-head { gap: 10px; }
  .edit-sub { font-size: 13px; }
  .hairline { display: none; }
  .edit-grid { gap: 12px; }
  .tile-sub { display: none; }
  .feed { padding: 44px var(--gutter); }
  .feed-note { display: none; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .story { padding: 48px var(--gutter); gap: 18px; }
  .story-img { max-height: 300px; }
  .agency { padding: 0 0 48px; gap: 16px; }
  .agency-photo { max-width: none; border-radius: 0; aspect-ratio: 390 / 420; order: -1; box-shadow: none; }
  .agency-copy { padding: 20px var(--gutter) 0; gap: 14px; }
  .venues li { font-size: 14px; padding: 10px 14px; }
  .agency .cta-row { flex-direction: column; align-items: stretch; }
  .agency .cta-note { text-align: center; }
  .footer { flex-direction: column; align-items: flex-start; padding: 28px var(--gutter) 40px; }
}
