/* ============================================================================
   CONCEPT 3 — "Editorial" : light, high-end wedding-magazine.
   STRUCTURE (its signature, not just colour): a LEFT-ALIGNED asymmetric hero, services
   set as a NUMBERED editorial list (not cards), and a feature-led gallery where the first
   image runs large. Ivory + warm ink + a single blush accent, oversized Playfair Display,
   generous whitespace. A LIGHT theme, so the cream wordmark is recoloured to ink via a CSS
   mask. Standalone (layered over style.css).
   ---------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --dark: #26221f !important;
  --light: #faf7f2 !important;
  --ink: #34302c !important;
  --muted: #6c635b !important;
  --accent: #cf9aa4 !important;
  --accent-strong: #9d4b5a !important;
  --line: rgba(38, 34, 31, .14) !important;
  --heading-font: 'Playfair Display', Didot, Georgia, serif !important;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body { background: var(--light); color: var(--ink); }
h1, h2, h3 { font-weight: 500; letter-spacing: -.3px; }

/* --- Asymmetric hero: text pinned bottom-left, oversized headline --- */
.hero.has-image { padding: 0; min-height: 88vh; display: flex; align-items: flex-end; }
.hero.has-image::before { background: linear-gradient(120deg, rgba(38,34,31,.55) 0%, rgba(38,34,31,.12) 55%, rgba(38,34,31,.02) 100%); }
.hero.has-image .hero-inner { text-align: left; max-width: 720px; margin: 0; padding: 0 6vw 8vh; }
.hero h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; font-weight: 500; margin: 0 0 18px; }
.hero.has-image p { font-family: var(--body-font); font-size: 19px; color: rgba(255,255,255,.94); max-width: 520px; margin: 0 0 28px; }
.hero .hero-btns { justify-content: flex-start; }

/* Thin uppercase kickers + masthead nav */
.nav a { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-family: var(--body-font); color: var(--ink); }
.nav a:hover, .nav a.active { color: var(--accent-strong); }
.kicker, .shop-tag { letter-spacing: 3px; color: var(--accent-strong); }
.site-header { padding: 30px max(24px, 5vw); max-width: none; }

/* Logo: recolour the cream wordmark to ink via a mask */
.logo.logo-img { display: block; width: 78px; height: 55px; background-color: var(--dark);
  -webkit-mask: url(assets/logo.png) no-repeat left center / contain; mask: url(assets/logo.png) no-repeat left center / contain; }
.logo.logo-img img { display: none; }

/* Section headings: large, left-set with a short rule (magazine department heads) */
.services h2, .gallery h2, .shop h2, .stats h2 { font-size: clamp(30px, 4vw, 44px); }
.services, .shop { background: transparent; padding: 84px 0; }

/* --- Services as a NUMBERED editorial list (not cards) --- */
.services .wrap { max-width: 880px; }
.services h2 { text-align: left; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.services .grid { display: block; counter-reset: svc; }
.card {
  display: grid; grid-template-columns: 96px 1fr; gap: 8px 28px; align-items: start;
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  border-radius: 0; padding: 30px 0; box-shadow: none;
}
.card:hover { transform: none; box-shadow: none; }
.card::before {
  counter-increment: svc; content: counter(svc, decimal-leading-zero);
  grid-column: 1; grid-row: 1 / 3; font-family: var(--heading-font); font-size: 46px;
  color: var(--accent); line-height: 1;
}
.card h3 { grid-column: 2; font-size: 24px; margin: 0 0 6px; }
.card h3::after { display: none; }
.card p { grid-column: 2; font-size: 16px; }

/* --- Feature-led gallery: first image runs large (asymmetric spread) --- */
.gallery { padding: 30px 0 50px; }
.gallery h2 { text-align: left; max-width: 1080px; margin-left: auto; margin-right: auto; padding: 0 24px 24px; }
.tiles { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 12px; }
.tile { border-radius: 3px; }
.tile:first-child { grid-column: span 2; grid-row: span 2; }

/* Founder: small round photo, editorial hanging heading */
.founder { padding: 74px 0; }
.founder-media img, .founder-media picture { width: 130px; height: 130px; }
.founder-text h2 { font-size: 30px; }

/* Feature (weddings): asymmetric, image narrower, rule over the heading */
.feature-inner { gap: 60px; align-items: flex-start; }
.feature-media { flex: 1 1 44%; }
.feature-media img { border-radius: 3px; }
.feature-text { flex: 1 1 56%; }
.feature-text h2 { font-size: clamp(28px, 3.5vw, 40px); position: relative; padding-top: 22px; }
.feature-text h2::before { content: ""; position: absolute; top: 0; left: 0; width: 50px; height: 2px; background: var(--accent); }

/* Quote as a large pull-quote with a left rule */
.quote blockquote { font-size: clamp(26px, 3.5vw, 38px); font-weight: 400; max-width: 860px; padding-left: 26px; border-left: 3px solid var(--accent); text-align: left; margin-left: auto; margin-right: auto; }
.quote cite { color: var(--accent-strong); display: block; text-align: left; max-width: 860px; margin: 12px auto 0; padding-left: 26px; }

/* Shop cards: flat paper with a hairline */
.card, .shop-card, .post-card { background: #fff; }
.shop-card { border: 1px solid var(--line); border-radius: 3px; box-shadow: none; display: flex; flex-direction: column; padding: 0; }
.shop-card:hover { box-shadow: 0 14px 34px rgba(38,34,31,.09); transform: translateY(-3px); }
.shop-grid { gap: 26px; }
.shop-note { background: #fff; border-color: var(--line); }
.shop-badge { background: rgba(38,34,31,.72); }

/* Buttons: quiet ink outline that fills */
.btn, .shop-btn { background: transparent; color: var(--dark); border: 1.5px solid var(--dark);
  border-radius: 2px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12.5px; font-family: var(--body-font); }
.btn { padding: 14px 30px; }
.btn:hover, .shop-btn:hover { background: var(--dark); color: #fff; }
.nav-cta { background: var(--dark); color: #fff !important; border-radius: 2px; text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--body-font); }
.nav-cta:hover { background: var(--accent-strong); }
.hero.has-image .btn { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.85); }
.hero.has-image .btn:hover { background: #fff; color: var(--dark); }

/* Dark bands: warm ink (magazine back cover) */
.cta-band, .site-footer, .stats-band { background: var(--dark); border-radius: 0; }
.cta-band h2 { font-size: clamp(28px, 3.5vw, 38px); }

@media (max-width: 760px) {
  .feature-inner { flex-direction: column; }
  .tile:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .hero.has-image { min-height: 80vh; }
  .card { grid-template-columns: 60px 1fr; gap: 6px 18px; }
  .card::before { font-size: 32px; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .tile:first-child { grid-column: span 2; }
}
