@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #211a18;
  --ink-soft: #5f5550;
  --wine: #6f2634;
  --wine-deep: #34151c;
  --wine-dark: #251014;
  --saffron: #d69842;
  --saffron-light: #efc67f;
  --paper: #fbf6ed;
  --paper-deep: #f0e5d5;
  --cream: #fffaf2;
  --sage: #dfe5dc;
  --white: #ffffff;
  --line: rgba(33, 26, 24, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(52, 21, 28, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--wine-deep);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--wine-dark);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saffron-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(52, 21, 28, 0.97);
  border-bottom: 1px solid var(--line-light);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(37, 16, 20, 0.96);
  box-shadow: 0 14px 40px rgba(31, 10, 15, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand img {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  color: var(--wine-deep);
  background: var(--cream);
  border: 1px solid var(--cream);
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: transparent;
  transform: translateY(-1px);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 1px;
  background: var(--white);
  transform: translateY(-4px);
  transition: transform 180ms ease;
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: calc(100svh - 118px);
  display: grid;
  grid-template-columns: minmax(490px, 0.83fr) minmax(0, 1.17fr);
  background: var(--paper);
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 108px) clamp(36px, 5.8vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--wine);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow.light {
  color: var(--saffron-light);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 6.1vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 8px 0 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.button-primary:hover {
  color: var(--wine);
  background: transparent;
}

.button-light {
  color: var(--wine-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover {
  color: var(--cream);
  background: transparent;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.text-link span {
  color: var(--wine);
}

.text-link.dark {
  margin-top: 20px;
}

.hero-note {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d8c6b2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(34, 14, 19, 0.42));
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero:hover .hero-visual > img {
  transform: scale(1.015);
}

.hero-caption {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 54px);
  left: clamp(18px, 4vw, 54px);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 18px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.caption-number {
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-caption p {
  max-width: 310px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1;
}

.promise-strip {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 30px;
  padding: 26px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: var(--wine-deep);
}

.promise-intro {
  display: grid;
  gap: 4px;
}

.promise-intro p {
  margin: 0;
  color: var(--saffron-light);
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
}

.promise-intro a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 700;
}

.promise-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-strip li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promise-strip li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--saffron);
}

.section {
  padding: clamp(88px, 9vw, 148px) clamp(18px, 5vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 20px clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

.section-heading h2,
.process-intro h2,
.craft h2,
.distance h2,
.story h2,
.visit h2,
.final-cta h2,
.final-cta h1 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.collections {
  background:
    radial-gradient(circle at 9% 5%, rgba(214, 152, 66, 0.12), transparent 20%),
    var(--paper);
}

.portfolio-note {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 780px;
  margin: calc(clamp(44px, 6vw, 80px) * -0.45) 0 clamp(34px, 4vw, 52px);
  padding: 16px 18px;
  color: var(--ink-soft);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.portfolio-note > span {
  flex: 0 0 auto;
  padding: 4px 8px;
  color: var(--cream);
  background: var(--wine);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-note p {
  margin: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.collection-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(230px, 0.8fr) minmax(290px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.collection-media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.collection-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 34px);
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: auto;
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-topline span:last-child {
  max-width: 110px;
  color: var(--ink-soft);
  font-size: 0.54rem;
  letter-spacing: 0.07em;
  text-align: right;
}

.collection-body h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.collection-body p {
  max-width: 390px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.collection-body a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 800;
}

.card-kankotri .collection-media {
  background:
    linear-gradient(135deg, transparent 47%, rgba(111, 38, 52, 0.06) 47%, rgba(111, 38, 52, 0.06) 53%, transparent 53%) 0 0 / 20px 20px,
    var(--paper-deep);
}

.kankotri-mark {
  position: absolute;
  top: 50%;
  right: -6px;
  left: -6px;
  color: rgba(111, 38, 52, 0.18);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 6.5vw, 7.4rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%) rotate(-7deg);
}

.card-kankotri .collection-media::before,
.card-kankotri .collection-media::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(111, 38, 52, 0.2);
  border-radius: 50%;
}

.card-kankotri .collection-media::before {
  top: 24px;
  right: -64px;
}

.card-kankotri .collection-media::after {
  top: 44px;
  right: -44px;
}

.card-modern .collection-media {
  background:
    radial-gradient(circle at 18% 24%, rgba(214, 152, 66, 0.23), transparent 28%),
    linear-gradient(145deg, #e8d9c7, #f8efe3 52%, #d8c1aa);
}

.modern-motif {
  position: absolute;
  inset: 13% 15%;
  transform: rotate(3deg);
}

.modern-motif span {
  position: absolute;
  inset: 0;
  background: #fffaf2;
  border: 1px solid rgba(52, 21, 28, 0.18);
  box-shadow: 0 20px 45px rgba(52, 21, 28, 0.12);
}

.modern-motif span:nth-child(2) {
  transform: translate(-10%, 8%) rotate(-7deg);
  background: #b8c1b7;
}

.modern-motif span:nth-child(3) {
  inset: 20% 16%;
  background: transparent;
  border-color: rgba(111, 38, 52, 0.34);
  box-shadow: none;
}

.card-boxed .collection-media {
  background: var(--wine-deep);
}

.box-motif {
  position: absolute;
  top: 50%;
  right: 50%;
  width: min(46%, 190px);
  aspect-ratio: 1;
  transform: translate(50%, -50%) rotate(45deg);
}

.box-motif span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 198, 127, 0.25);
}

.box-motif span:nth-child(2) {
  inset: 22px;
}

.box-motif span:nth-child(3) {
  inset: 44px;
  background: rgba(214, 152, 66, 0.08);
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 7vw, 110px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 152, 66, 0.13), transparent 24%),
    var(--wine-deep);
}

.craft-copy {
  max-width: 820px;
}

.craft h2 {
  max-width: 620px;
  color: var(--cream);
}

.craft-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.craft-finishes > p {
  margin-bottom: 14px;
  color: var(--saffron-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finish-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  list-style: none;
}

.finish-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 140px);
  background: var(--paper-deep);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.faq-intro > p:last-child {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  color: var(--wine);
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  color: var(--cream);
  background: var(--wine);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 52px 24px 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.process {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--cream);
}

.process-intro {
  align-self: start;
}

.process-intro h2 {
  max-width: 620px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 60px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
}

.process-list p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.distance {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  padding: clamp(80px, 9vw, 140px) clamp(18px, 7vw, 110px);
  color: var(--white);
  background-color: #1b332d;
  background-image:
    linear-gradient(110deg, rgba(27, 51, 45, 0.98), rgba(27, 51, 45, 0.9)),
    image-set(
      url("assets/invitation-flatlay-distance-1280.avif") type("image/avif"),
      url("assets/invitation-flatlay-distance-1280.webp") type("image/webp")
    );
  background-position: center;
  background-size: cover;
}

.distance h2 {
  max-width: 890px;
  color: var(--cream);
}

.distance > div:last-child > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.story {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: clamp(50px, 9vw, 145px);
  align-items: center;
  background: var(--paper-deep);
}

.story-visual {
  margin: 0;
}

.story-frame {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  padding: clamp(16px, 2vw, 28px);
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.story-frame::after {
  content: "Archive";
  position: absolute;
  top: 22px;
  right: -30px;
  padding: 8px 15px;
  color: var(--white);
  background: var(--wine);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.story-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(0.96);
}

.story-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 460px;
  margin-left: auto;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.story-visual figcaption span {
  color: var(--wine);
  font-weight: 800;
  text-transform: uppercase;
}

.story-copy {
  max-width: 840px;
}

.story-copy h2 {
  margin-bottom: 30px;
}

.story-lede {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
}

.story-copy > p:not(.eyebrow):not(.story-lede) {
  max-width: 600px;
  color: var(--ink-soft);
}

.archive-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
}

.visit {
  background: var(--cream);
}

.visit-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px 80px;
  align-items: end;
  margin-bottom: 58px;
}

.visit-heading .eyebrow {
  grid-column: 1 / -1;
}

.visit-heading h2 {
  max-width: 700px;
}

.visit-heading > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.location-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.location-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(111, 38, 52, 0.16);
  border-radius: 50%;
}

.location-card-dark {
  color: var(--white);
  background: var(--wine-deep);
  border-color: var(--wine-deep);
}

.location-card-dark::after {
  border-color: rgba(255, 255, 255, 0.15);
}

.location-number {
  margin-bottom: auto;
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 800;
}

.location-card-dark .location-number {
  color: var(--saffron-light);
}

.location-area {
  margin: 44px 0 8px;
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-card-dark .location-area {
  color: var(--saffron-light);
}

.location-card h3 {
  max-width: 500px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.95;
}

.location-card address {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-style: normal;
}

.location-card-dark address {
  color: rgba(255, 255, 255, 0.72);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
}

.location-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 800;
}

.additional-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 18px clamp(20px, 3vw, 34px);
  color: var(--cream);
  background: #1f342f;
}

.additional-contact span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.additional-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 18px;
  color: var(--white);
  background: var(--wine-deep);
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2,
.final-cta h1 {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto 26px;
  color: var(--cream);
  font-size: clamp(4rem, 8vw, 8.8rem);
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .button {
  position: relative;
  z-index: 2;
}

.final-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(56vw, 780px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.final-ornament span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 198, 127, 0.1);
}

.final-ornament span:nth-child(2) {
  inset: 14%;
}

.final-ornament span:nth-child(3) {
  inset: 28%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 64px clamp(18px, 5vw, 80px) 28px;
  color: var(--white);
  background: var(--wine-dark);
}

.footer-brand img {
  width: 168px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links strong {
  margin-bottom: 14px;
  color: var(--saffron-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid var(--line-light);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: #126b47;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 42px rgba(16, 74, 50, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-whatsapp svg {
  width: 20px;
  fill: currentColor;
}

.show-floating .floating-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  background: #0d5b3c;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring, var(--wine));
  outline-offset: 4px;
}

:where(.announcement, .site-header, .promise-strip, .craft, .distance, .location-card-dark, .additional-contact, .final-cta, .site-footer, .floating-contact) {
  --focus-ring: var(--saffron-light);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(440px, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-copy {
    padding-right: 44px;
    padding-left: 44px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 7vw, 6.4rem);
  }

  .collection-card {
    grid-template-rows: minmax(210px, 0.75fr) minmax(300px, 1fr);
  }

  .craft {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 106px;
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 118px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--white);
    background: rgba(37, 16, 20, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(19, 6, 10, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-scrolled .site-nav {
    top: 82px;
  }

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

  .site-nav > a:not(.nav-cta) {
    min-height: 54px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: minmax(330px, auto);
  }

  .collection-card:last-child .collection-media {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .craft {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .craft-finishes {
    max-width: 680px;
  }

  .faq,
  .process,
  .distance,
  .story {
    grid-template-columns: 1fr;
  }

  .process {
    gap: 60px;
  }

  .distance {
    align-items: start;
  }

  .story-visual {
    width: min(100%, 420px);
    max-width: none;
    margin: 0 auto;
  }

  .story-frame,
  .story-visual figcaption {
    margin-right: auto;
    margin-left: auto;
  }

  .visit-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .announcement {
    justify-content: center;
    min-height: 36px;
    padding: 2px 14px;
    font-size: 0.59rem;
  }

  .announcement p {
    display: none;
  }

  .announcement a {
    min-height: 32px;
  }

  .site-header {
    min-height: 72px;
    padding: 8px 16px;
  }

  .site-header.is-scrolled {
    min-height: 66px;
  }

  .brand img {
    width: 128px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav,
  .site-header.is-scrolled .site-nav {
    top: 94px;
    max-height: calc(100svh - 106px);
  }

  .site-header.is-scrolled .site-nav {
    top: 88px;
  }

  .hero-copy {
    min-height: auto;
    padding: 42px 18px 32px;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 16px;
    font-size: 0.61rem;
  }

  .eyebrow > span {
    width: 22px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(3.4rem, 15.5vw, 4.45rem);
    line-height: 0.87;
  }

  .hero-lede {
    margin-bottom: 24px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .hero-note {
    margin-top: 12px;
    font-size: 0.65rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual > img {
    object-position: 69% center;
  }

  .hero-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-caption p {
    max-width: 250px;
    font-size: 1.3rem;
  }

  .promise-strip {
    gap: 18px;
    padding: 22px 18px;
  }

  .promise-intro {
    grid-template-columns: 1fr;
  }

  .promise-intro p {
    font-size: 1.08rem;
  }

  .promise-intro a {
    font-size: 0.59rem;
  }

  .promise-strip ul {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .section {
    padding: 58px 18px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .process-intro h2,
  .craft h2,
  .distance h2,
  .story h2,
  .visit h2 {
    font-size: clamp(2.85rem, 12vw, 3.65rem);
  }

  .section-heading > p:last-child {
    font-size: 0.86rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card,
  .collection-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 132px minmax(218px, auto);
  }

  .collection-media,
  .collection-card:last-child .collection-media {
    min-height: 132px;
  }

  .collection-card:last-child .collection-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection-body {
    padding: 22px;
  }

  .card-topline {
    margin-bottom: 18px;
  }

  .card-topline span:last-child {
    display: none;
  }

  .collection-body h3 {
    margin-top: 0;
  }

  .collection-body h3 {
    margin-bottom: 10px;
    font-size: 2.6rem;
  }

  .collection-body p {
    margin-bottom: 14px;
    font-size: 0.82rem;
  }

  .portfolio-note {
    align-items: flex-start;
    margin: -8px 0 28px;
    padding: 13px 14px;
    font-size: 0.72rem;
  }

  .craft {
    gap: 42px;
    padding: 58px 18px;
  }

  .craft h2 {
    font-size: clamp(2.85rem, 12vw, 3.65rem);
  }

  .craft-copy > p:not(.eyebrow) {
    margin-top: 20px;
  }

  .faq {
    gap: 30px;
  }

  .faq-intro h2 {
    font-size: clamp(2.85rem, 12vw, 3.65rem);
  }

  .faq-intro > p:last-child {
    margin-top: 18px;
  }

  .faq-list summary {
    min-height: 60px;
    padding: 14px 2px;
    font-size: 1.28rem;
  }

  .faq-list details p {
    margin: -2px 42px 18px 2px;
    font-size: 0.82rem;
  }

  .process {
    gap: 28px;
  }

  .process-intro > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 0.86rem;
  }

  .process-intro .text-link {
    margin-top: 12px;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 22px 0;
  }

  .process-list h3 {
    font-size: 1.8rem;
  }

  .process-list p {
    font-size: 0.82rem;
  }

  .distance {
    gap: 32px;
    padding: 68px 18px;
    background-image:
      linear-gradient(110deg, rgba(27, 51, 45, 0.98), rgba(27, 51, 45, 0.91)),
      image-set(
        url("assets/invitation-flatlay-distance-800.avif") type("image/avif"),
        url("assets/invitation-flatlay-distance-800.webp") type("image/webp")
      );
  }

  .story {
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .story-copy h2 {
    margin-bottom: 16px;
  }

  .story-lede {
    margin-bottom: 14px;
    font-size: 1.18rem;
  }

  .story-copy > p:not(.eyebrow):not(.story-lede) {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .archive-link {
    margin-top: 4px;
    font-size: 0.7rem;
  }

  .story-frame {
    max-width: 220px;
    padding: 12px;
  }

  .story-frame img {
    height: 220px;
    aspect-ratio: 1;
    object-position: center 14%;
  }

  .story-visual figcaption {
    max-width: 220px;
    margin-top: 12px;
    font-size: 0.58rem;
  }

  .story-frame::after {
    right: -8px;
  }

  .story-visual figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 300px;
    padding: 24px;
  }

  .visit {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .visit-heading {
    gap: 10px;
    margin-bottom: 34px;
  }

  .visit-heading > p:last-child {
    font-size: 0.84rem;
  }

  .location-area {
    margin-top: 24px;
  }

  .location-card h3 {
    margin-bottom: 14px;
    font-size: 2.65rem;
  }

  .location-card address {
    font-size: 0.8rem;
  }

  .location-actions {
    margin-top: 18px;
  }

  .additional-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .additional-contact a {
    font-size: 1.2rem;
  }

  .final-cta {
    padding: 82px 18px;
  }

  .final-cta h2,
  .final-cta h1 {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .final-ornament {
    width: 110vw;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 56px 18px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
