:root {
  --ink: #261f1b;
  --muted: #75695f;
  --paper: #fbf7f1;
  --soft: #efe4d8;
  --warm: #b9613f;
  --wine: #63322c;
  --olive: #5f6444;
  --white: #fffaf5;
  --shadow: 0 24px 70px rgba(38, 31, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: rgba(38, 31, 27, 0.52);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 250, 245, 0.12);
}

.brand-logo {
  display: inline-flex;
  width: clamp(160px, 15vw, 210px);
  align-items: center;
  padding: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  height: 84vh;
  min-height: 600px;
  object-fit: cover;
  object-position: 57% 24%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 31, 27, 0.78) 0%, rgba(38, 31, 27, 0.38) 42%, rgba(38, 31, 27, 0.06) 100%),
    linear-gradient(0deg, rgba(38, 31, 27, 0.46), rgba(38, 31, 27, 0.04) 45%);
}

.hero-content {
  position: absolute;
  left: clamp(22px, 5vw, 80px);
  bottom: clamp(36px, 7vw, 82px);
  max-width: 560px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4b18d;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(48px, 6.4vw, 86px);
}

.story-title {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 0 0.22em;
  color: rgba(255, 250, 245, 0.94);
}

.story-title em {
  color: #f8dfb8;
  font-style: italic;
  font-weight: 700;
}

.story-title span:last-child {
  display: block;
  flex-basis: 100%;
}

h2 {
  font-size: clamp(36px, 6vw, 72px);
}

h3 {
  font-size: 34px;
}

.hero-content p:not(.eyebrow) {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(255, 250, 245, 0.92);
  font-size: clamp(16px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button.ghost {
  color: var(--white);
  background: rgba(255, 250, 245, 0.1);
}

.button.ghost.dark {
  color: var(--ink);
  background: rgba(38, 31, 27, 0.04);
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 98px);
  align-items: start;
  background: var(--white);
}

.intro-copy {
  max-width: 720px;
  margin: 12px 0 0;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.intro-copy .signature-line {
  max-width: 640px;
  margin-top: 28px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.05;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.gallery-section {
  background: var(--paper);
}

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

figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
}

figure.wide {
  grid-column: span 2;
}

figure img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 4px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(38, 31, 27, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-section {
  background: #2d2621;
  color: var(--white);
}

.pricing-section .eyebrow {
  color: #f3a986;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 245, 0.055);
}

.price-card.featured {
  border-color: #f3a986;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 4px;
  padding: 7px 10px;
  background: var(--wine);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-top {
  min-height: 112px;
}

.price {
  margin: 12px 0 0;
  color: #f3a986;
  font-size: 20px;
  font-weight: 800;
}

.featured .price {
  color: var(--warm);
}

.coverage {
  margin: 0 0 18px;
  color: inherit;
  font-weight: 800;
}

ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 250, 245, 0.82);
}

.featured li {
  color: var(--muted);
}

li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .eyebrow {
  color: #f3a986;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  min-height: 320px;
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 250, 245, 0.045);
}

.steps span {
  display: block;
  color: rgba(255, 250, 245, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(70px, 8vw, 112px);
  font-weight: 600;
  line-height: 0.82;
}

.steps h3 {
  margin-top: 26px;
  color: var(--white);
  font-size: clamp(29px, 3vw, 42px);
  text-transform: none;
}

.steps p {
  color: rgba(255, 250, 245, 0.72);
}

.testimonials {
  background: var(--paper);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 16px;
  align-items: stretch;
}

.review-card {
  min-height: 360px;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 58px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.review-couple {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.review-date {
  margin: 4px 0 0;
  color: var(--muted);
}

.review-rating {
  flex: 0 0 auto;
  color: #c17b00;
  font-weight: 900;
}

.review-rating strong {
  margin-left: 8px;
  color: var(--ink);
}

.review-card h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
}

.review-card p[data-review-text] {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
}

.review-nav {
  border: 1px solid rgba(38, 31, 27, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  cursor: pointer;
}

.review-nav:hover {
  border-color: var(--warm);
  color: var(--warm);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.review-dots button {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(38, 31, 27, 0.22);
  cursor: pointer;
}

.review-dots button.active {
  background: var(--warm);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
  min-height: 780px;
  background: var(--ink);
  color: var(--white);
}

.contact > img {
  height: 100%;
  min-height: 780px;
  object-fit: cover;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
}

.contact-panel h2 {
  max-width: 560px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 490px;
  color: rgba(255, 250, 245, 0.78);
  font-size: 18px;
}

.phone-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 14px;
  color: #f8dfb8;
  font-size: 22px;
  font-weight: 900;
}

.contact-panel .button {
  align-self: flex-start;
  margin-top: 10px;
}

.contact-form {
  display: grid;
  max-width: 620px;
  gap: 14px;
  margin-top: 26px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 245, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 245, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 250, 245, 0.08);
  font: inherit;
  outline: none;
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f3a986;
  box-shadow: 0 0 0 3px rgba(243, 169, 134, 0.16);
}

::placeholder {
  color: rgba(255, 250, 245, 0.48);
}

.instagram-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  border-bottom: 1px solid rgba(243, 169, 134, 0.72);
  color: #f8dfb8;
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--muted);
}

.footer-logo {
  width: min(190px, 58vw);
  padding: 0;
  opacity: 0.92;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
}

footer a {
  font-weight: 800;
}

@media (min-width: 1200px) {
  .site-header {
    min-height: 104px;
    padding: 8px clamp(28px, 3vw, 54px);
  }

  .brand-logo {
    width: 196px;
  }

  .hero,
  .hero img {
    min-height: 720px;
    height: 100vh;
  }

  .hero {
    background:
      linear-gradient(rgba(38, 31, 27, 0.16), rgba(38, 31, 27, 0.16)),
      url("assets/hero-baiser.jpeg") 58% 34% / cover no-repeat;
  }

  .hero img {
    object-position: 58% 34%;
    transform: scale(0.94);
    transform-origin: 58% 34%;
  }

  .hero-content {
    bottom: clamp(34px, 5vw, 64px);
    max-width: 520px;
  }

  .hero-content h1 {
    font-size: clamp(56px, 4.8vw, 74px);
  }

  .hero-content p:not(.eyebrow) {
    max-width: 470px;
    font-size: 18px;
  }
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(38, 31, 27, 0.86), rgba(38, 31, 27, 0.48)),
    url("assets/ambiance-lanterne.jpeg") center / cover;
}

.thanks {
  display: flex;
  min-height: 100vh;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 8vw, 84px);
  color: var(--white);
}

.thanks-logo {
  width: min(330px, 80vw);
  margin-bottom: 46px;
}

.thanks h1 {
  max-width: 620px;
}

.thanks p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 245, 0.84);
  font-size: 19px;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand-logo {
    width: 178px;
  }

  .hero img {
    object-position: 48% 26%;
  }

  .intro,
  .pricing-grid,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .testimonial-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "card card"
      "prev next";
  }

  .review-card {
    grid-area: card;
  }

  [data-review-prev] {
    grid-area: prev;
  }

  [data-review-next] {
    grid-area: next;
  }

  .review-nav {
    width: 54px;
    min-height: 54px;
    justify-self: center;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }

  .contact > img,
  .contact {
    min-height: auto;
  }

  .contact > img {
    max-height: 520px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  nav {
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 168px;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    height: 760px;
    min-height: 760px;
    object-position: 52% 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(38, 31, 27, 0.78) 0%, rgba(38, 31, 27, 0.28) 58%, rgba(38, 31, 27, 0.08) 100%),
      linear-gradient(90deg, rgba(38, 31, 27, 0.5), rgba(38, 31, 27, 0.04));
  }

  .hero-content {
    right: 20px;
    bottom: 42px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

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

  figure.wide {
    grid-column: span 1;
  }

  figure,
  figure img {
    min-height: 420px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-meta {
    display: block;
  }

  .review-rating {
    display: inline-block;
    margin-top: 14px;
  }
}
