/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Oceanic Text Book";
  src:
    url("../assets/fonts/oceanic-text-book-web.woff2") format("woff2"),
    url("../assets/fonts/oceanic-text-book-web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --brown: #3a2824;
  --sky-blue: #bcd7eb;
  --cream: #f0ebe4;
  --blue: #6486eb;
  --olive: #838451;

  --font-body:
    "Oceanic Text Book", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-stamp: "Caveat", cursive;

  --content-max: 1440px;
  --gutter: clamp(20px, 4vw, 40px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem var(--gutter);
  overflow: hidden;
}

.nav--solid {
  background: var(--cream);
}

.nav--brown {
  background: var(--brown);
}

.nav--blue {
  background: var(--blue);
}

.nav::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: rgba(58, 40, 36, 0.75);
}

.nav--brown::after {
  background: rgba(240, 235, 228, 0.4);
}

.nav__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.nav__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.nav__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(188, 215, 235, 0.7);
}

.nav__logo img {
  width: auto;
  height: 52.514px;
  aspect-ratio: 139.014 / 52.514;
}

.nav__toggle {
  position: relative;
  width: 64px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bcd7ebb2;
  border-radius: 50%;
}

.nav--solid .nav__toggle,
.nav--brown .nav__toggle,
.nav--blue .nav__toggle {
  background: none;
}

.nav__toggle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nav__toggle-icon--hover {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.nav__toggle:hover .nav__toggle-icon--hover,
.nav__toggle:focus-visible .nav__toggle-icon--hover {
  opacity: 1;
}

.nav__toggle span {
  /* "MENU" is now drawn into menu-icon-base.svg itself; keep the text for screen readers only */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: min(100%, 520px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3rem;
  padding: 1.25rem var(--gutter) clamp(2rem, 6vw, 3.5rem);
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__close {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}

.mobile-menu__close svg {
  width: 100%;
  height: 100%;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-menu__links li {
  border-bottom: 1px solid rgba(58, 40, 36, 0.75);
  padding-bottom: 1.75rem;
}

.mobile-menu a {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  color: var(--brown);
}

.mobile-menu__social-title {
  display: block;
  width: 8.75rem;
  height: auto;
  margin-bottom: 1rem;
}

.mobile-menu__social-icons {
  display: flex;
  gap: 0.75rem;
}

.mobile-menu__social-icons a {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
}

.mobile-menu__social-icons svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(188, 215, 235, 0.5);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
  max-width: var(--content-max);
}

.hero__title {
  font-weight: 450;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  text-align: center;
  color: var(--brown);
  max-width: 45ch;
}

.hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1387 / 786;
  border-radius: 20px;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  color: #fff;
}

/* ---------- Find us ---------- */
.find-us {
  position: relative;
  background: var(--brown);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.find-us__deco {
  display: none;
}

.find-us__title {
  font-weight: 450;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.85;
  text-align: center;
  color: var(--sky-blue);
  transform: rotate(-1.2deg);
}

.find-us__map {
  width: 100%;
  max-width: 1329px;
  border-radius: 12px;
  overflow: hidden;
}

.find-us__map img {
  width: 100%;
  height: auto;
}

.find-us__map-link {
  position: relative;
  display: block;
}

.find-us__map-link img {
  transition: filter 0.3s ease;
}

.find-us__map-link:hover img,
.find-us__map-link:focus-visible img {
  filter: brightness(0.85);
}

.find-us__map-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.find-us__map-link:hover .find-us__map-hover,
.find-us__map-link:focus-visible .find-us__map-hover {
  opacity: 1;
}

.find-us__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2rem, 4vw, 2.5rem);
  width: 100%;
  max-width: var(--content-max);
}

.find-us__info {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.9rem);
}

.find-us__address {
  font-size: 1.28rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.find-us__address a:hover {
  color: var(--blue);
}

.hours {
  display: flex;
  flex-direction: column;
}

.hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--brown);
}

.hours--light .hours__row {
  border-top-color: var(--cream);
}

.hours__day {
  font-size: 1.25rem;
}
.hours__time {
  font-size: 1rem;
}

.parking {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.parking__label {
  font-size: 1.25rem;
}
.parking__text {
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  max-width: 42rem;
}

.find-us__illustration {
  flex: 1 1 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.find-us__illustration img {
  width: 100%;
  max-width: 660px;
  height: auto;
}

/* ---------- About ---------- */
.about {
  position: relative;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 10vw, 7.5rem);
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.about__deco {
  display: none;
}

.about__intro {
  font-weight: 450;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.15;
  text-align: center;
  max-width: 60rem;
}

.about__section {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.25rem);
  width: 100%;
  max-width: var(--content-max);
}

.about__section--reverse {
  flex-direction: row-reverse;
}

.about__image {
  position: relative;
  flex: 1 1 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 570 / 750;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  color: #fff;
}

.about__image--tall {
  aspect-ratio: 570 / 810;
}
.about__image--wide {
  aspect-ratio: 570 / 538;
}

.about__image-wrap {
  position: relative;
  flex: 1 1 0;
}

.about__image-wrap .about__image {
  flex: none;
  width: 100%;
}

.about__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 5rem);
  text-align: center;
}

.about__text h3 {
  font-weight: 450;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.15;
}

.about__text p {
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
  line-height: 1.4;
  max-width: 34rem;
}

.about__text p + p {
  margin-top: calc(clamp(1.75rem, 4vw, 5rem) * -0.5);
}

.about__text--relative {
  position: relative;
}

/* Stamp-style links */
.stamp-link {
  display: inline-block;
  transform: rotate(-8.8deg);
  color: var(--brown);
  transition: color 0.2s ease;
}

.stamp-link span {
  font-family: var(--font-stamp);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: inherit;
}

.stamp-link__svg {
  display: block;
  width: clamp(9.5rem, 16vw, 11.875rem);
  height: auto;
  color: inherit;
}

.stamp-link:hover,
.stamp-link:focus-visible {
  color: var(--blue);
}

.stamp-link--histoire {
  position: absolute;
  top: -6.5rem;
  right: -4rem;
  z-index: 1;
  transform: rotate(0deg);
  opacity: 1;
}

.stamp-link--histoire .stamp-link__svg {
  width: 310.5749206542969px;
  height: 142.72984313964844px;
  max-width: none;
}

.about__blob {
  display: none;
  width: 552px;
  height: 554px;
}

.about__section--full {
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.about__text--center {
  position: relative;
  max-width: 68rem;
}

.about__text--center h3 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
}
.about__text--center p {
  max-width: 60rem;
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
}

.about__wide-photo {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1372 / 813;
}

.about__wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__wide-photo figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  font-size: 0.7rem;
  color: #fff;
}

/* ---------- Events ---------- */
.events {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: 70vh;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  overflow: hidden;
}

.events__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.events__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.events__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 40, 36, 0.7);
}

.events__title {
  position: relative;
}

.events__title img {
  width: clamp(16rem, 32vw, 23rem);
  height: auto;
}

.events__deco {
  position: relative;
  width: clamp(22rem, 48vw, 36rem);
  height: auto;
  pointer-events: none;
}

@media (min-width: 900px) {
  .events__deco {
    width: clamp(28rem, 40vw, 40rem);
  }
}

/* ---------- Menu page ---------- */
.menu-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--blue);
  color: var(--brown);
  min-height: clamp(30rem, 98vw, 90rem);
  padding: clamp(3rem, 8vw, 6.25rem) var(--gutter) 0;
  overflow: hidden;
}

.menu-hero__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.menu-hero__deco img {
  position: absolute;
  left: 50%;
}

.menu-hero__deco-cup {
  top: 13.8%;
  width: 82%;
  max-width: 1180px;
  aspect-ratio: 1048.12 / 578.27;
  transform: translateX(-50%) rotate(19.38deg);
}

.menu-hero__deco-saucer-sm {
  top: 65.5%;
  width: 73.5%;
  max-width: 1059px;
  aspect-ratio: 1056.45 / 99.07;
  transform: translateX(-50%) rotate(-1.49deg);
}

.menu-hero__deco-saucer-lg {
  top: 76.6%;
  width: 89.8%;
  max-width: 1294px;
  aspect-ratio: 1285.98 / 244;
  transform: translateX(-50%) rotate(1.98deg);
}

.menu-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.75rem);
  text-align: center;
  width: 100%;
  max-width: var(--content-max);
}

.menu-hero__title {
  font-weight: 450;
  font-size: clamp(4rem, 13vw, 12.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.menu-hero__intro {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.15;
  max-width: 62rem;
}

.menu-content {
  background: var(--blue);
  color: var(--brown);
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter) clamp(4rem, 10vw, 7.5rem);
}

.menu-content__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 3.75rem);
  width: 100%;
  max-width: var(--content-max);
}

.menu-content__photo {
  position: relative;
  flex: 1 1 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 650 / 745;
}

.menu-content__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-content__photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  color: #fff;
}

.menu-content__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.menu-content__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
  line-height: 1.4;
}

.menu-content__highlight {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
}

.menu-drinks {
  background: var(--cream);
  display: flex;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
}

.menu-drinks img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--cream);
  display: flex;
  justify-content: center;
  padding: clamp(4.5rem, 9vw, 6.5rem) var(--gutter) 0;
  overflow: hidden;
}

.footer--on-blue {
  background: var(--sky-blue);
}

.footer--on-brown {
  background: var(--brown);
}

.footer__shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  line-height: 0;
}

.footer__shape img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--brown);
}

.footer__brand {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  /* gap: 0.6rem; */
  /* transform: rotate(-3deg); */
}

.footer__logo img:last-child {
  height: 120px;
  width: auto;
}

.footer__desc {
  font-size: 0.75rem;
  line-height: 1.25;
  max-width: 28rem;
}

.footer__cols {
  flex: 1 1 480px;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 150px;
}

.footer__col h4 {
  font-size: 1.6rem;
  font-weight: 450;
}

.footer__col ul,
.footer__col p {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.footer__col a:hover {
  color: #bcd7ebb2;
}

.footer__credits {
  align-self: stretch;
  text-align: left;
  padding: 1.4rem 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ---------- Responsive ---------- */
@media (min-width: 900px) {
  .find-us__deco,
  .about__deco {
    display: block;
    position: absolute;
    top: -2rem;
    left: -0.2rem;
    width: 6.5rem;
    transform: rotate(-90deg) scaleY(-1);
    pointer-events: none;
  }

  .about__deco {
    top: -0.5rem;
    left: -1rem;
    width: 3.3rem;
    transform: rotate(90deg);
  }

  .about__blob {
    display: block;
    position: absolute;
    left: 0%;
    top: 66%;
    /* width: 34%; */
    /* max-width: 420px; */
    pointer-events: none;
    z-index: 0;
    transform: rotate(-11.81deg);
    width: 552.6832342157052px;
    height: 554.5283880465892px;
    opacity: 1;
  }
  .about__blob img {
    /* width: 34%; */
    /* max-width: 420px; */
    /* pointer-events: none; */
    z-index: -10;
    /* transform: rotate(-11.81deg); */
    width: 552.6832342157052px;
    height: 554.5283880465892px;
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .about__section,
  .about__section--reverse {
    flex-direction: column;
  }

  .about__image {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .about__image-wrap {
    flex: none;
    width: 100%;
  }

  .stamp-link--histoire {
    top: -1.75rem;
    right: -1rem;
  }

  .find-us__content {
    flex-direction: column;
  }

  .nav__logo img {
    height: 32px;
  }

  .menu-content__inner {
    flex-direction: column;
  }

  .menu-content__photo {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .contact-content__inner {
    flex-direction: column;
  }

  .contact-form__row {
    flex-direction: column;
  }

  .gift-card__row {
    flex-direction: column;
    align-items: center;
  }

  .gift-card__content {
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .gift-card__button {
    align-self: center;
  }
}

/* ---------- À propos page ---------- */
.apropos-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  max-width: 60rem;
}

.apropos-hero h1 {
  font-weight: 450;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.85;
}

.apropos-hero p {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.15;
  max-width: 40ch;
}

.about__text h4 {
  font-weight: 450;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.2;
}

.about__wide-photo--band {
  aspect-ratio: 3130 / 2075;
}

.apropos-outro {
  width: clamp(11rem, 20vw, 15.125rem);
  height: auto;
  transform: rotate(-7deg);
}

/* ---------- Contact page ---------- */
.contact-hero-wrap {
  position: relative;
}

.contact-hero-wrap__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.contact-hero-wrap__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.contact-hero-wrap__overlay {
  position: absolute;
  inset: 0;
  background: rgba(188, 215, 235, 0.7);
}

.contact-hero {
  display: flex;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6.25rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}

.contact-hero h1 {
  font-weight: 450;
  font-size: clamp(4rem, 17vw, 18rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--brown);
}

.contact-content {
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
}

.contact-content__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 3.75rem);
  width: 100%;
  max-width: var(--content-max);
}

.contact-form-box {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-box h2 {
  font-weight: 450;
  font-size: 1.75rem;
  line-height: 1.05;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: flex;
  gap: 1.25rem;
}

.contact-form__row > div {
  flex: 1 1 0;
  min-width: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--brown);
  border-radius: 12px;
  padding: 1.25rem;
  font: inherit;
  color: var(--brown);
  background: transparent;
}

.contact-form input {
  height: 60px;
}

.contact-form textarea {
  min-height: 253px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--brown);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.contact-form__submit {
  align-self: flex-start;
  background: var(--brown);
  color: var(--sky-blue);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--blue);
}

.contact-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.125rem);
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__block h2 {
  font-weight: 450;
  font-size: 1.75rem;
  line-height: 1.05;
}

.contact-info__block p,
.contact-info__block a {
  font-size: 1.25rem;
  line-height: 1.4;
}

.contact-info__block a:hover {
  color: var(--blue);
}

.contact-map {
  position: relative;
  background: var(--sky-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 5vw, 2.5rem) var(--gutter);
}

/* ---------- Carte cadeau page ---------- */
.gift-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}

.gift-card__header h1 {
  font-weight: 450;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.8;
  text-align: center;
}

.gift-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 3.75rem);
  width: 100%;
  max-width: var(--content-max);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.gift-card__image {
  width: 100%;
  max-width: 492px;
  height: auto;
  border-radius: 12px;
}

.gift-card__content {
  flex: 1 1 320px;
  min-width: 0;
  max-width: 492px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 310px;
}

.gift-card__content p {
  font-size: 1.25rem;
  line-height: 1.4;
}

.gift-card__button {
  align-self: flex-start;
  display: inline-flex;
  background: var(--brown);
  color: var(--sky-blue);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.gift-card__button:hover,
.gift-card__button:focus-visible {
  background: var(--blue);
}
