@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

.wedora-app {
  --wine: #4a1e35; --wine-dark: #3a1729; --plum: #341428;
  --gold: #b88a4a; --gold-light: #d8b785; --champagne: #e8d6b8;
  --ivory: #faf5ee; --ivory-2: #f3ebdd;
  --ink: #2c2128; --muted: #675760; --border: #e2d6c5;
  --rose: #a8536b; --green: #5a7d5a;
  --bg: var(--ivory); --surface: #ffffff; --surface-2: var(--ivory-2);
  --text: var(--ink); --text-muted: var(--muted);
  --primary: var(--wine); --primary-fg: #ffffff; --accent: var(--gold);
  background: var(--bg); color: var(--text); min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.wedora-app.theme-dark {
  --bg: #1a0e16; --surface: #2c1424; --surface-2: #3a1729;
  --text: #faf5ee; --text-muted: #b598a4; --border: #3a1729;
  --primary: #d8b785; --primary-fg: #1a0e16; --accent: #d8b785;
}

.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-italic-display { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

.grad-green  { background: linear-gradient(135deg, #c5dacd 0%, #7a9b88 100%); }
.grad-gold   { background: linear-gradient(135deg, #dac9a6 0%, #8f7449 100%); }
.grad-rose   { background: linear-gradient(135deg, #e8c4c4 0%, #b97a86 100%); }
.grad-purple { background: linear-gradient(135deg, #d5c6dc 0%, #7d6188 100%); }
.grad-sage   { background: linear-gradient(135deg, #c8d3c8 0%, #697b6e 100%); }
.grad-amber  { background: linear-gradient(135deg, #f0d9b5 0%, #c8a570 100%); }
.grad-lavender { background: linear-gradient(135deg, #cdc5e2 0%, #8e7da8 100%); }
.grad-taupe  { background: linear-gradient(135deg, #d8c6b6 0%, #9c826a 100%); }
.grad-terracotta { background: linear-gradient(135deg, #e5c4b1 0%, #a06a4c 100%); }
.grad-forest { background: linear-gradient(135deg, #cbd6c7 0%, #5e7a5e 100%); }
.grad-hero {
  background: radial-gradient(120% 75% at 80% 10%, rgba(216,183,133,.3), transparent 55%),
              radial-gradient(80% 60% at 5% 100%, rgba(168,83,107,.25), transparent 60%),
              linear-gradient(155deg, #3a1729 0%, #52203b 55%, #2c1020 100%);
}

.btn-primary {
  background: var(--primary); color: var(--primary-fg);
  border: none; border-radius: 999px; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600;
  padding: 12px 24px; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: box-shadow 200ms, transform 120ms;
  box-shadow: 0 6px 20px rgba(74,30,53,.2);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(74,30,53,.3); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 999px; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600;
  padding: 11px 22px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 180ms, color 180ms;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 150ms, color 150ms;
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.chip-filter {
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 160ms;
}
.chip-filter:hover { border-color: var(--accent); }
.chip-filter.active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.card-hover { transition: transform 220ms ease, box-shadow 220ms ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(74,30,53,.10); }
.input-field {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); border-radius: 10px; outline: none;
  font-size: 14px; font-family: inherit; width: 100%; padding: 11px 14px;
  transition: border-color 150ms, box-shadow 150ms;
}
.input-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,138,74,.15); }
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(74,30,53,.9); color: #fff;
  font-size: 9.5px; letter-spacing: 1px; font-weight: 700;
  text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
  backdrop-filter: blur(6px);
}
.verified-dot { width: 5px; height: 5px; border-radius: 50%; background: #d8b785; }
.scroll-x { display: flex; gap: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.scroll-x::-webkit-scrollbar { display: none; }
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,8,15,.65); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.4s ease; }
@keyframes heartPop { 0%,100% { transform: scale(1); } 40% { transform: scale(1.35); } 70% { transform: scale(0.92); } }
.heart-pop { animation: heartPop 0.45s ease; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
main { min-height: 72vh; }
hr { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--primary-fg);
}
.brand-word { font-size: 28px; font-weight: 700; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  padding: 9px 11px; border-radius: 999px; white-space: nowrap;
}
.site-nav a.active, .site-nav a:hover { background: var(--surface-2); color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.saved-link, .theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  background: var(--surface); color: var(--text); border: 1px solid var(--border);
  cursor: pointer;
}
.saved-link span {
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--primary); color: var(--primary-fg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.theme-icon-dark, .theme-dark .theme-icon-light { display: none; }
.theme-dark .theme-icon-dark { display: inline-flex; }

.hero {
  min-height: min(740px, calc(100vh - 132px));
  display: flex; align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 74px);
  color: #faf5ee;
}
.hero-copy { width: min(980px, 100%); }
.hero h1 {
  margin: 10px 0; font-size: clamp(78px, 15vw, 168px);
  line-height: 0.82; letter-spacing: 0; max-width: 760px;
}
.hero p { max-width: 610px; font-size: 18px; line-height: 1.7; color: rgba(250,245,238,.82); }
.eyebrow {
  color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 11px; font-weight: 800;
}
.hero .eyebrow { color: #d8b785; }
.hero-search {
  margin-top: 30px; display: flex; align-items: stretch; gap: 12px; max-width: 720px;
}
.search-field {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px;
  background: rgba(250,245,238,.12); border: 1px solid rgba(250,245,238,.25);
  border-radius: 999px; padding: 0 18px; color: #faf5ee;
}
.search-field input {
  width: 100%; min-height: 48px; background: transparent; border: 0; outline: 0;
  color: inherit; font-size: 14px;
}
.search-field input::placeholder { color: rgba(250,245,238,.62); }
.hero-vendor-strip {
  margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px; max-width: 900px;
}
.mini-vendor {
  display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center;
  padding: 10px; border-radius: 14px; background: rgba(250,245,238,.1);
  border: 1px solid rgba(250,245,238,.16);
}
.mini-swatch { width: 56px; height: 54px; border-radius: 10px; display: block; }
.mini-vendor strong { display: block; font-size: 14px; }
.mini-vendor small { color: rgba(250,245,238,.68); font-size: 12px; }

.section, .discover-layout, .planner-layout, .dashboard-grid, .form-page {
  width: min(1160px, calc(100% - 36px)); margin: 0 auto;
}
.section { padding: 64px 0; }
.section-heading { margin-bottom: 22px; }
.section-heading h2, .page-hero h1, .profile-copy h1, .wedding-detail-hero h1 {
  margin: 6px 0 0; font-size: clamp(38px, 6vw, 68px); line-height: .95; letter-spacing: 0;
}
.section-heading-row, .panel-heading, .results-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.category-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px;
}
.category-tile { min-height: 170px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.category-tile span:first-child {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--primary);
}
.category-tile strong { font-size: 27px; line-height: 1; }
.category-tile small { color: var(--text-muted); line-height: 1.5; }
.split-section { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.plan-callout {
  padding: 24px; border-left: 1px solid var(--border); min-height: 100%;
  background: linear-gradient(180deg, var(--surface-2), transparent);
}
.plan-callout h3 { margin: 16px 0 8px; font-size: 34px; line-height: 1; }
.plan-callout p { color: var(--text-muted); line-height: 1.7; }

.vendor-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.vendor-card { min-height: 420px; display: flex; flex-direction: column; }
.vendor-card-media {
  position: relative; min-height: 218px; display: block;
}
.vendor-card-media .verified-badge { position: absolute; left: 14px; top: 14px; }
.vendor-card-category {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.74);
  color: #3a1729; font-size: 12px; font-weight: 800;
}
.vendor-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.vendor-card-topline, .vendor-card-footer, .profile-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.meta-pill, .rating, .profile-meta span {
  display: inline-flex; align-items: center; gap: 5px; color: var(--text-muted);
  font-size: 12px; font-weight: 700;
}
.rating { color: var(--text); }
.rating span { color: var(--text-muted); font-weight: 500; }
.vendor-card-title { margin: 13px 0 7px; font-size: 30px; line-height: 1; }
.vendor-card-copy { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 14px; }
.vendor-card-footer { margin-top: auto; padding-top: 18px; }
.vendor-price { color: var(--primary); font-weight: 800; font-size: 13px; }
.save-button, .modal-close {
  width: 39px; height: 39px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.save-button.saved, .save-inline.saved { color: var(--rose); border-color: color-mix(in srgb, var(--rose) 40%, var(--border)); }
.save-button.saved svg, .save-inline.saved svg { fill: currentColor; }

.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.story-grid-large { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-card { display: flex; flex-direction: column; min-height: 360px; }
.story-media { min-height: 190px; display: block; }
.story-body { padding: 18px; display: grid; gap: 8px; }
.story-body small { color: var(--text-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.story-body strong { font-size: 30px; line-height: 1; }
.story-body span { color: var(--text-muted); line-height: 1.55; }

.page-hero {
  width: min(1160px, calc(100% - 36px)); margin: 0 auto;
  padding: 64px 0 36px;
}
.compact-hero p { max-width: 690px; color: var(--text-muted); line-height: 1.7; font-size: 17px; }
.discover-layout {
  display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 24px; align-items: start; padding-bottom: 72px;
}
.filter-panel { position: sticky; top: 88px; padding: 18px; }
.filter-panel form { display: grid; gap: 20px; }
.filter-search { display: flex; align-items: center; gap: 8px; }
.filter-search .input-field { padding-left: 12px; }
.filter-group { display: grid; gap: 9px; }
.filter-group > span {
  color: var(--text-muted); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.chip-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.results-panel { min-width: 0; }
.results-toolbar { margin-bottom: 18px; }
.results-toolbar h2 { margin: 4px 0 0; font-size: 38px; line-height: 1; }
.empty-state {
  grid-column: 1 / -1; min-height: 260px; display: grid; place-items: center;
  text-align: center; padding: 32px; color: var(--text-muted);
}
.empty-state h3 { margin: 8px 0 0; color: var(--text); font-size: 34px; }

.vendor-profile-hero {
  width: min(1160px, calc(100% - 36px)); margin: 34px auto 0;
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px); gap: 34px; align-items: center;
}
.profile-media { min-height: 520px; border-radius: 18px; position: relative; overflow: hidden; }
.profile-media .verified-badge { position: absolute; top: 18px; left: 18px; }
.back-link {
  display: inline-flex; align-items: center; gap: 5px; color: var(--text-muted);
  font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
.back-link.light { color: rgba(250,245,238,.82); margin-bottom: 28px; }
.profile-copy p { color: var(--text-muted); line-height: 1.75; font-size: 17px; }
.profile-meta { justify-content: flex-start; flex-wrap: wrap; margin: 22px 0; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.profile-section { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }
.style-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.highlight-item { padding: 18px; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.small-heading { margin-top: 36px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.gallery-tile { min-height: 170px; border-radius: 14px; display: block; }
.profile-sidebar { padding: 24px; position: sticky; top: 88px; }
.profile-sidebar h3, .story-sidebar h3 { margin: 0 0 12px; font-size: 31px; line-height: 1; }
.clean-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.clean-list li, .profile-sidebar p {
  display: flex; align-items: center; gap: 9px; color: var(--text-muted); line-height: 1.45;
}
.modal {
  width: min(620px, 100%); padding: 26px; position: relative;
  max-height: calc(100vh - 32px); overflow: auto;
}
.hidden { display: none !important; }
.modal-close { position: absolute; top: 14px; right: 14px; }
.modal h2 { margin: 6px 42px 18px 0; font-size: 40px; line-height: 1; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
form label { display: grid; gap: 7px; color: var(--text-muted); font-size: 13px; font-weight: 700; margin-bottom: 14px; }
textarea.input-field { resize: vertical; min-height: 118px; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--green); font-size: 13px; font-weight: 700; }
.form-status.error { color: var(--rose); }

.wedding-detail-hero {
  width: min(1160px, calc(100% - 36px)); margin: 34px auto 0;
  min-height: 500px; border-radius: 18px; color: #faf5ee;
  padding: clamp(28px, 6vw, 64px); display: flex; flex-direction: column; justify-content: flex-end;
}
.wedding-detail-hero .eyebrow { color: #d8b785; }
.wedding-detail-hero p { max-width: 650px; color: rgba(250,245,238,.8); font-size: 18px; line-height: 1.7; }
.wedding-story-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.story-article h2 { margin: 8px 0 12px; font-size: 52px; line-height: 1; }
.story-article p { color: var(--text-muted); line-height: 1.9; font-size: 18px; max-width: 760px; }
.story-sidebar { padding: 24px; }
.palette-list { display: flex; flex-wrap: wrap; gap: 8px; }
.palette-list span { padding: 8px 11px; border-radius: 999px; background: var(--surface-2); font-size: 13px; font-weight: 700; }

.planner-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 430px); gap: 24px; padding-bottom: 72px; }
.checklist-panel, .concierge-panel, .register-form, .dashboard-panel { padding: 24px; }
.panel-heading h2 { margin: 4px 0 0; font-size: 38px; line-height: 1; }
.progress-ring {
  width: 58px; height: 58px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 13px; font-weight: 800;
  background: conic-gradient(var(--accent) calc(var(--progress) * 1%), var(--surface-2) 0);
}
.progress-bar { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin: 18px 0; }
.progress-bar span { display: block; height: 100%; background: var(--accent); transition: width 180ms ease; }
.checklist { display: grid; gap: 10px; }
.check-item {
  display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center;
  padding: 14px; border: 1px solid var(--border); border-radius: 12px; margin: 0;
  color: var(--text); cursor: pointer;
}
.check-item input { position: absolute; opacity: 0; pointer-events: none; }
.fake-check {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center; color: transparent;
}
.check-item.done { background: var(--surface-2); }
.check-item.done .fake-check { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.check-item strong { display: block; font-size: 14px; }
.check-item small { color: var(--text-muted); font-size: 12px; }
.chat-window {
  height: 390px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
  padding: 16px; background: var(--surface-2); border-radius: 14px; margin: 16px 0;
}
.chat-bubble {
  max-width: 86%; padding: 11px 13px; border-radius: 14px; line-height: 1.5; font-size: 14px;
  background: var(--surface); border: 1px solid var(--border);
}
.chat-bubble.user { margin-left: auto; background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.chat-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.chat-form .btn-primary { width: 48px; height: 48px; padding: 0; justify-content: center; }

.form-page { padding-bottom: 72px; }
.register-form { width: min(820px, 100%); margin: 0 auto; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-bottom: 72px; }
.dashboard-list { display: grid; gap: 10px; margin-top: 18px; }
.dashboard-item { padding: 14px; border: 1px solid var(--border); border-radius: 12px; display: grid; gap: 5px; }
.dashboard-item span, .dashboard-item small, .muted-copy { color: var(--text-muted); }

.site-footer {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
  padding: 34px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--border); color: var(--text-muted);
}
.site-footer span { color: var(--text); font-size: 28px; font-weight: 700; }
.site-footer p { margin: 6px 0 0; }
.site-footer a { font-size: 13px; font-weight: 800; color: var(--accent); }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; }
  .hero, .split-section, .discover-layout, .vendor-profile-hero, .profile-section, .wedding-story-layout, .planner-layout, .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-vendor-strip { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vendor-grid, .story-grid, .story-grid-large, .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-panel, .profile-sidebar { position: static; }
  .profile-media { min-height: 360px; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 14px; }
  .brand-word { font-size: 24px; }
  .hero { padding: 42px 18px; grid-template-columns: 1fr; }
  .hero h1 { font-size: 74px; }
  .hero-search, .section-heading-row, .panel-heading, .results-toolbar, .site-footer {
    align-items: flex-start; flex-direction: column;
  }
  .hero-search { display: grid; }
  .search-field { border-radius: 18px; }
  .category-grid, .vendor-grid, .story-grid, .story-grid-large, .highlight-grid, .gallery-grid, .form-grid.two {
    grid-template-columns: 1fr;
  }
  .section, .discover-layout, .planner-layout, .dashboard-grid, .form-page, .page-hero, .vendor-profile-hero, .wedding-detail-hero {
    width: min(100% - 28px, 1160px);
  }
  .section { padding: 44px 0; }
  .section-heading h2, .page-hero h1, .profile-copy h1, .wedding-detail-hero h1 { font-size: 45px; }
  .vendor-card { min-height: 0; }
  .vendor-card-media { min-height: 190px; }
  .modal { padding: 22px; }
}
