/* Sara & Lorenzo — Editorial Italica
   Shared design system extracted from Variation A. */

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

:root {
  --cream: #f4ecdb;
  --cream-deep: #efe4cc;
  --cream-light: #faf4e5;
  --espresso: #2c1810;
  --cocoa: #4a3220;
  --terracotta: #a85432;
  --terracotta-soft: #c2785a;
  --mushroom: #7a5a3f;
  --mushroom-light: #9c8568;
  --rule: rgba(168, 84, 50, 0.45);
  --rule-soft: rgba(122, 90, 63, 0.2);
  --stripe-a: #e8dcc4;
  --stripe-b: #e0d2b8;
  --stripe-edge: #c8b89a;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "EB Garamond", Georgia, serif;

  --label-size: 11px;
  --label-tracking: 0.32em;
  --maxw: 980px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

::selection {
  background: var(--terracotta);
  color: var(--cream);
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  /* anchor for mobile nav drawer */
  isolation: isolate;
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}

.site-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.kicker {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  font-weight: 500;
}

.monogram {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--terracotta);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.monogram a {
  display: inline-block;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
}

.lang-toggle button {
  padding: 4px 10px;
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--mushroom);
  position: relative;
}

.lang-toggle button[aria-pressed="true"] {
  color: var(--terracotta);
}

.lang-toggle .sep {
  color: var(--mushroom-light);
  padding: 0 2px;
}

/* ---------------- Nav ---------------- */

.site-nav {
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--cream);
}

.site-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--terracotta);
}

.site-nav a.active {
  color: var(--espresso);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  transform: translateX(-50%) rotate(45deg);
}

/* Hamburger — desktop hidden */
.nav-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.nav-menu-btn:hover {
  background: color-mix(in oklab, var(--terracotta) 8%, transparent);
}

.nav-menu-icon {
  display: grid;
  gap: 5px;
  width: 20px;
}

.nav-menu-icon span {
  display: block;
  height: 1.5px;
  background: var(--terracotta);
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-icon span:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* ---------------- Page ---------------- */

.site {
  position: relative;
  overflow-x: clip;
}

.decor-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site > main,
.site > .site-footer {
  position: relative;
  z-index: 1;
}

.site > .site-header {
  z-index: 10;
}

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 28px 96px;
}

.page-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}

.page-chapter {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 18px;
}

.page-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin: 0;
}

.page-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  margin: 14px 0 0;
  font-weight: 300;
}

/* Diamond rule */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto;
  max-width: 320px;
}
.rule .line {
  height: 1px;
  flex: 1;
  background: var(--rule);
}
.rule .diamond {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.rule.tight {
  margin: 18px auto;
  max-width: 200px;
}
.rule.wide {
  max-width: 480px;
}

/* Body text helpers */
.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--cocoa);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.prose {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--cocoa);
  max-width: 620px;
  margin: 0 auto;
}

.prose p {
  margin: 0 0 1em;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose em {
  color: var(--terracotta);
}

/* Cards */
.card {
  background: var(--cream-light);
  border: 1px solid var(--rule-soft);
  padding: 28px 32px;
}

.card-label {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.15;
  color: var(--espresso);
  margin: 0 0 10px;
  font-weight: 400;
}

/* Photo placeholders */
.photo {
  background: repeating-linear-gradient(
    135deg,
    var(--stripe-a) 0 10px,
    var(--stripe-b) 10px 20px
  );
  border: 1px solid var(--stripe-edge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 10px;
  color: var(--mushroom);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.photo span {
  padding: 6px 10px;
  background: rgba(244, 236, 219, 0.85);
  border: 1px solid var(--stripe-edge);
}

/* Section dividers */
.section {
  margin-top: 80px;
}
.section + .section {
  margin-top: 96px;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
}
.section-head .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--terracotta);
  line-height: 1;
}
.section-head .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--espresso);
  line-height: 1.1;
  margin: 0;
  font-weight: 400;
  flex: 1;
}
.section-head .meta {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--espresso);
  border: 1px solid var(--espresso);
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  color: var(--espresso);
  background: transparent;
  border-color: var(--espresso);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--cream);
}

/* Coming soon notice */
.notice {
  border: 1px dashed var(--rule);
  background: color-mix(in oklab, var(--cream-light) 80%, transparent);
  padding: 28px 32px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.notice .tag {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.notice .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--espresso);
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 400;
}
.notice .body {
  font-family: var(--font-body);
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Site footer */
.site-footer {
  border-top: 1px solid var(--rule-soft);
  background: var(--cream-deep);
  padding: 48px 28px 56px;
  margin-top: 80px;
  text-align: center;
}
.site-footer .monogram {
  font-size: 36px;
  margin-bottom: 8px;
}
.site-footer .small {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin: 8px 0;
}
.site-footer .italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cocoa);
  margin-top: 12px;
}

/* Forms */
.form {
  max-width: 580px;
  margin: 0 auto;
}
.form label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 8px;
}
.form .row {
  margin-bottom: 22px;
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--espresso);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
  border-bottom-color: var(--terracotta);
}
.form textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.45;
}

.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-pill {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cocoa);
  transition: all 0.15s ease;
  background: transparent;
}
.radio-pill input {
  display: none;
}
.radio-pill:hover {
  border-color: var(--terracotta);
  color: var(--espresso);
}
.radio-pill.selected {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.radio-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
}
.radio-pill.selected .dot {
  background: var(--cream);
  border-color: var(--cream);
}
.radio-pill.selected .dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--terracotta);
  border-radius: 50%;
}

.form-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.thanks {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--rule-soft);
  background: var(--cream-light);
}
.thanks .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  color: var(--terracotta);
  margin: 0 0 8px;
  font-weight: 400;
}
.thanks .body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cocoa);
  margin: 0;
}

/* Two-column helper */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-menu-btn {
    display: inline-flex;
  }

  .site-header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
  }

  .site-header-inner .kicker {
    display: none;
  }

  .monogram {
    text-align: left;
    font-size: 22px;
  }

  .site-header-actions {
    margin-top: 0;
    flex-shrink: 0;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.22);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 11;
    border-top: 0;
    visibility: hidden;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease,
      visibility 0.25s ease;
    box-shadow: 0 16px 40px rgba(44, 24, 16, 0.1);
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 20px 16px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--rule-soft);
    text-align: center;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      color 0.2s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open a:nth-child(1) {
    transition-delay: 0.04s;
  }
  .site-nav.is-open a:nth-child(2) {
    transition-delay: 0.07s;
  }
  .site-nav.is-open a:nth-child(3) {
    transition-delay: 0.1s;
  }
  .site-nav.is-open a:nth-child(4) {
    transition-delay: 0.13s;
  }
  .site-nav.is-open a:nth-child(5) {
    transition-delay: 0.16s;
  }
  .site-nav.is-open a:nth-child(6) {
    transition-delay: 0.19s;
  }
  .site-nav.is-open a:nth-child(7) {
    transition-delay: 0.22s;
  }
  .site-nav.is-open a:nth-child(8) {
    transition-delay: 0.25s;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a.active::after {
    bottom: 10px;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Timeline list */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--terracotta);
  opacity: 0.45;
}
.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline li:last-child {
  border-bottom: 0;
}
.timeline .time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--terracotta);
  line-height: 1;
}
.timeline .what {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--espresso);
  margin: 0 0 4px;
  font-weight: 400;
}
.timeline .note {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--mushroom);
  line-height: 1.5;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--rule-soft);
  padding: 18px 0;
}
.faq details:first-child {
  border-top: 1px solid var(--rule-soft);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--espresso);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--terracotta);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "—";
  font-size: 20px;
}
.faq .answer {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cocoa);
  line-height: 1.65;
}

/* List of links/items */
.linked-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-soft);
}
.linked-list .item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.linked-list .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
}
.linked-list .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--espresso);
  margin: 0;
  font-weight: 400;
}
.linked-list .desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--mushroom);
  margin-top: 4px;
  line-height: 1.5;
}
.linked-list .meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mushroom);
}

/* ---------------- Home / Hero ---------------- */

.home main {
  padding-top: 0;
}

.hero {
  padding: 72px 28px 64px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 48px;
  white-space: nowrap;
  gap: 24px;
  padding: 0 4px;
}

.hero-monogram {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--terracotta);
  letter-spacing: 0;
  text-transform: none;
}

.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-h {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 12vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0;
}

.hero-amp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 92px);
  line-height: 1;
  color: var(--terracotta);
  margin: 6px 0 4px;
}

.hero-invite {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cocoa);
  margin: 12px 0 0;
  line-height: 1.45;
}

.hero-date {
  margin-top: 28px;
}
.hero-day-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}
.hero-day-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--rule) 30%,
    var(--rule) 70%,
    transparent
  );
  display: block;
}
.hero-date-line {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 0;
  white-space: nowrap;
}
.hero-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--terracotta);
  margin: 4px 0 0;
  line-height: 1;
}
.hero-ceremony {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  padding: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--cocoa);
}
.hero-ceremony-dot {
  color: var(--terracotta-soft);
  font-style: normal;
  font-size: 11px;
  opacity: 0.85;
  transform: translateY(-1px);
}
.hero-date-italian {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--mushroom);
  margin: 8px 0 0;
}

.hero-venue {
  margin-top: 32px;
}
.hero-villa {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--espresso);
  margin: 0;
}
.hero-place {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin-top: 8px;
}

/* Photo stripe (home) */
.photo-stripe {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 14px;
  min-height: 280px;
}
.photo-stripe .photo {
  min-height: 280px;
}
.photo-stripe .photo.wide-mid {
  min-height: 320px;
}

@media (max-width: 720px) {
  .photo-stripe {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .photo-stripe .photo,
  .photo-stripe .photo.wide-mid {
    min-height: 220px;
  }
  .hero-top {
    font-size: 10px;
  }
  .hero-top span:first-child,
  .hero-top span:last-child {
    display: none;
  }
  .hero-top {
    justify-content: center;
  }
}

/* Section heads on home (centered variant) */
.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin: 0;
  text-align: left;
}
.section-title.centered {
  text-align: center;
}

.section-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--terracotta);
  margin: 10px 0 0;
}
.section-sub.centered {
  text-align: center;
}

.centered {
  text-align: center;
}

.note-section {
  text-align: center;
}
.note-section .prose {
  margin-top: 28px;
  text-align: left;
}
.note-section .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  text-align: right;
  margin-top: 18px;
}

/* Weekend section */
.weekend-section {
  text-align: center;
}

.weekend-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  margin: 0 0 48px;
}
.weekend-card {
  background: var(--cream-light);
  border: 1px solid var(--rule-soft);
  padding: 32px 20px 28px;
  text-align: center;
}
.weekend-card-main {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.weekend-day {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.weekend-card-main .weekend-day {
  color: var(--terracotta-soft);
}
.weekend-month {
  font-family: var(--font-body);
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 12px;
}
.weekend-card-main .weekend-month {
  color: var(--cream-deep);
  opacity: 0.85;
}
.weekend-what {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.1;
}
.weekend-time {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-deep);
  margin-top: 10px;
  opacity: 0.75;
}

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

.rsvp-section {
  text-align: center;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery .photo {
  min-height: 260px;
}
.gallery .photo.tall {
  grid-row: span 2;
  min-height: 540px;
}
.gallery .photo.wide {
  grid-column: span 2;
  min-height: 320px;
}
.gallery .photo.big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}
@media (max-width: 720px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery .photo {
    min-height: 200px;
  }
  .gallery .photo.wide,
  .gallery .photo.big {
    grid-column: span 2;
  }
  .gallery .photo.tall {
    grid-row: span 1;
    min-height: 200px;
  }
  .gallery .photo.big {
    grid-row: span 1;
    min-height: 240px;
  }
}
