:root {
  --bg: #fff9f6;
  --bg-soft: #f8ece7;
  --ink: #2b1e1c;
  --muted: #846f69;
  --blush: #e9b9ae;
  --blush-deep: #b86f65;
  --cream: #fff3ec;
  --rose: #d99d94;
  --line: rgba(65, 35, 31, 0.13);
  --shadow: 0 24px 70px rgba(79, 37, 32, 0.13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(233, 185, 174, 0.35), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(248, 222, 214, 0.78), transparent 34rem),
    linear-gradient(180deg, var(--bg), #fffdfb 45%, #f7ebe7 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
  letter-spacing: 0.012em;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(4.2rem, 10vw, 9.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.75rem, 6vw, 5.4rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 249, 246, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(78, 39, 35, 0.08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 50%;
  max-width: 1180px;
  padding: 0.8rem 0.85rem 0.8rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), 1180px);
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--ink), #78453f);
  border-radius: 50%;
  color: #fff7f3;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 42px;
  justify-content: center;
  letter-spacing: -0.025em;
  width: 42px;
}

.brand-text {
  font-size: 1.02rem;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 0.15rem;
}

.main-nav a {
  border-radius: 999px;
  color: rgba(43, 30, 28, 0.74);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.75rem 1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: rgba(233, 185, 174, 0.28);
  color: var(--ink);
}

.main-nav .nav-book {
  background: var(--ink);
  color: #fff9f6;
  margin-left: 0.25rem;
}

.main-nav .nav-book:hover {
  background: #5a342f;
  color: #fff9f6;
  transform: translateY(-1px);
}

.menu-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
}

.menu-toggle span {
  background: #fff9f6;
  border-radius: 999px;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

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

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

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

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 5rem;
}

.eyebrow {
  color: var(--blush-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.hero-intro {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  margin-top: 1.55rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.15rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(43, 30, 28, 0.2);
  color: #fff9f6;
}

.button.primary:hover {
  background: #5a342f;
  box-shadow: 0 20px 48px rgba(43, 30, 28, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  color: var(--ink);
}

.trust-row {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.2rem;
  max-width: 610px;
  padding-top: 1.2rem;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(43, 30, 28, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
}

.hero-art {
  min-height: 620px;
  position: relative;
}

.image-frame {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(248, 236, 231, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img,
.portfolio-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-frame img[src$="hero.jpg"],
.portfolio-item img[src*="gallery-"] {
  background:
    linear-gradient(145deg, rgba(43, 30, 28, 0.04), rgba(233, 185, 174, 0.18)),
    repeating-linear-gradient(135deg, rgba(43, 30, 28, 0.035), rgba(43, 30, 28, 0.035) 1px, transparent 1px, transparent 15px);
}

.hero-image {
  border-radius: 48% 48% 18% 18% / 36% 36% 14% 14%;
  height: 100%;
  min-height: 620px;
  position: relative;
}

.hero-image::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.floating-card {
  backdrop-filter: blur(20px);
  background: rgba(255, 249, 246, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(77, 39, 35, 0.12);
  display: grid;
  gap: 0.1rem;
  padding: 1rem 1.25rem;
  position: absolute;
  z-index: 2;
}

.top-card {
  right: -1.4rem;
  top: 12%;
}

.bottom-card {
  bottom: 10%;
  left: -2rem;
}

.card-label {
  color: var(--blush-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}

.marquee div {
  animation: scroll 26s linear infinite;
  display: inline-flex;
  gap: 2.3rem;
  padding-left: 1.25rem;
}

.marquee span {
  color: rgba(43, 30, 28, 0.44);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: -0.025em;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.split-section {
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.82fr 1.18fr;
  padding-bottom: 7rem;
  padding-top: 7rem;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1.2rem;
  max-width: 560px;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.tabs-card {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.tabs {
  background: rgba(248, 236, 231, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.35rem;
}

.tab-button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(43, 30, 28, 0.64);
  cursor: pointer;
  font: inherit;
  font-weight: 820;
  min-height: 44px;
  padding: 0.75rem 0.8rem;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tab-button.active {
  background: #fff9f6;
  box-shadow: 0 10px 32px rgba(82, 43, 39, 0.1);
  color: var(--ink);
}

.tab-panel {
  min-height: 455px;
  padding: clamp(1.6rem, 4vw, 3.4rem);
  position: relative;
}

.panel-number {
  color: rgba(184, 111, 101, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  position: absolute;
  right: 2rem;
  top: 1.7rem;
}

.tab-panel h3 {
  max-width: 10ch;
  position: relative;
  z-index: 1;
}

.tab-panel p {
  font-size: 1.02rem;
  margin-top: 1.4rem;
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.service-list {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.service-list li {
  background: rgba(248, 236, 231, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(43, 30, 28, 0.74);
  font-weight: 750;
  padding: 0.85rem 1rem;
}

.portfolio-section {
  padding-bottom: 7rem;
}

.centered {
  margin: 0 auto 3rem;
  max-width: 740px;
  text-align: center;
}

.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-item {
  aspect-ratio: 1 / 1.12;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 52px rgba(77, 39, 35, 0.11);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.portfolio-item.tall {
  aspect-ratio: auto;
  grid-row: span 2;
}

.portfolio-item.wide {
  aspect-ratio: 2.05 / 1;
  grid-column: span 2;
}

@media (min-width: 641px) {
  .portfolio-item.wide img {
    object-position: center top;
  }
}

.portfolio-item::after {
  background: linear-gradient(180deg, transparent, rgba(43, 30, 28, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.portfolio-item figcaption {
  bottom: 1rem;
  color: #fff9f6;
  font-weight: 850;
  left: 1rem;
  position: absolute;
  z-index: 1;
}


.instagram-callout {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 243, 236, 0.72)),
    radial-gradient(circle at 10% 0%, rgba(233, 185, 174, 0.28), transparent 18rem);
  border: 1px solid rgba(184, 111, 101, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(77, 39, 35, 0.11);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto 1fr auto;
  margin-top: 1.4rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.instagram-orb {
  align-items: center;
  background: linear-gradient(145deg, #d7ad77, #c58b61);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(112, 66, 48, 0.2);
  color: #fff9f6;
  display: inline-flex;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.instagram-orb svg {
  fill: currentColor;
  height: 31px;
  width: 31px;
}

.instagram-copy .eyebrow {
  margin-bottom: 0.4rem;
}

.instagram-copy h3 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  letter-spacing: -0.035em;
}

.instagram-copy p:not(.eyebrow) {
  margin-top: 0.45rem;
}

.instagram-button {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(43, 30, 28, 0.18);
  color: #fff9f6;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 0.6rem;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.instagram-button:hover {
  background: #5a342f;
  box-shadow: 0 20px 48px rgba(43, 30, 28, 0.22);
  transform: translateY(-2px);
}

.experience-section {
  padding-bottom: 7rem;
}

.experience-card {
  background:
    linear-gradient(135deg, rgba(43, 30, 28, 0.94), rgba(86, 48, 43, 0.94)),
    radial-gradient(circle at top right, rgba(233, 185, 174, 0.32), transparent 30rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  color: #fff9f6;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  position: relative;
}

.experience-card::after {
  border: 1px solid rgba(255, 249, 246, 0.15);
  border-radius: 50%;
  content: "";
  height: 28rem;
  position: absolute;
  right: -9rem;
  top: -10rem;
  width: 28rem;
}

.experience-card h2,
.experience-card p,
.experience-card .eyebrow {
  color: #fff9f6;
  position: relative;
  z-index: 1;
}

.experience-card p {
  color: rgba(255, 249, 246, 0.72);
  margin-top: 1.3rem;
  max-width: 720px;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.stat-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.stat-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  letter-spacing: -0.025em;
}

.stat-grid span {
  color: rgba(255, 249, 246, 0.7);
  display: block;
  margin-top: 0.35rem;
}

.faq-section {
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.72fr 1.28fr;
  padding-bottom: 7rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 44px rgba(77, 39, 35, 0.07);
  padding: 1.1rem 1.2rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.8rem;
}

.booking-strip {
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: clamp(1.5rem, 4vw, 2.4rem);
  padding-top: clamp(1.5rem, 4vw, 2.4rem);
}

.booking-strip h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 2rem 1.25rem 3rem;
}

.footer-brand {
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 800;
}

.footer-links a {
  color: rgba(43, 30, 28, 0.7);
}

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

.language-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font: inherit;
  min-height: 38px;
  padding: 0 0.05rem;
  -webkit-tap-highlight-color: transparent;
}

.lang-switch {
  align-items: center;
  background: linear-gradient(145deg, #f6efec, #eee5e2);
  border: 1px solid rgba(43, 30, 28, 0.06);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.72),
    inset 0 -8px 18px rgba(120, 69, 63, 0.045),
    0 8px 22px rgba(78, 39, 35, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 38px;
  overflow: hidden;
  padding: 4px;
  position: relative;
  width: 104px;
}

.lang-text {
  align-items: center;
  color: rgba(43, 30, 28, 0.46);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease;
  z-index: 3;
}

.lang-text-en {
  color: #fff9f6;
}

.language-toggle.is-fr .lang-text-en {
  color: rgba(43, 30, 28, 0.46);
}

.language-toggle.is-fr .lang-text-fr {
  color: #fff9f6;
}

.lang-knob {
  background: #2d2d2d;
  border-radius: 999px;
  box-shadow:
    0 8px 18px rgba(43, 30, 28, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  height: 30px;
  left: 4px;
  position: absolute;
  top: 4px;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 48px;
  z-index: 2;
}

.language-toggle.is-fr .lang-knob {
  transform: translateX(48px);
}

.language-toggle:hover .lang-switch {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.78),
    inset 0 -8px 18px rgba(120, 69, 63, 0.055),
    0 10px 26px rgba(78, 39, 35, 0.12);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(233, 185, 174, 0.78);
  outline-offset: 4px;
}

.footer-rights {
  font-size: 0.86rem;
  margin-top: 0.45rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    background: rgba(255, 249, 246, 0.96);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.4rem;
    left: 1rem;
    opacity: 0;
    padding: 0.7rem;
    pointer-events: none;
    position: fixed;
    right: 1rem;
    top: 5.6rem;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.95rem 1rem;
  }

  .main-nav .nav-book {
    margin-left: 0;
    text-align: center;
  }

  .language-toggle {
    justify-self: start;
    min-height: 38px;
    padding: 0;
  }

  .lang-switch {
    height: 38px;
    width: 104px;
  }

  .lang-knob {
    height: 30px;
    width: 48px;
  }

  .language-toggle.is-fr .lang-knob {
    transform: translateX(48px);
  }
}

/* Mobile usability audit fixes
   - prevents horizontal overflow
   - stacks desktop-only grids
   - reduces oversized headings/images
   - makes the mobile menu scrollable and touch-friendly
*/
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 5.5rem);
    max-width: 10ch;
  }

  h2 {
    font-size: clamp(2.15rem, 9vw, 3.8rem);
  }

  h3 {
    font-size: clamp(1.65rem, 7vw, 2.6rem);
  }

  .site-header {
    top: 0.65rem;
    width: min(calc(100% - 1rem), 1180px);
    padding: 0.55rem 0.55rem 0.55rem 0.75rem;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .hero,
  .split-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.25rem;
    min-height: auto;
    padding-top: calc(var(--header-height) + 3.25rem);
    padding-bottom: 3.5rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-art {
    min-height: clamp(390px, 72vw, 620px);
    order: -1;
  }

  .hero-image {
    min-height: clamp(390px, 72vw, 620px);
  }

  .top-card {
    right: 0.75rem;
  }

  .bottom-card {
    left: 0.75rem;
  }

  .split-section,
  .portfolio-section,
  .experience-section,
  .faq-section {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
  }

  .sticky-heading {
    position: static;
  }

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

  .portfolio-item.tall,
  .portfolio-item.wide {
    aspect-ratio: 1 / 1.08;
    grid-column: auto;
    grid-row: auto;
  }

  .instagram-callout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .instagram-button,
  .booking-strip .button {
    width: 100%;
  }

  .booking-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 920px) {
  .main-nav {
    backdrop-filter: blur(20px);
    max-height: calc(100dvh - 6.8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav a,
  .main-nav button {
    min-height: 46px;
  }

  .main-nav a {
    align-items: center;
    display: flex;
  }

  .main-nav .nav-book {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at 25% 0%, rgba(233, 185, 174, 0.28), transparent 20rem),
      linear-gradient(180deg, var(--bg), #fffdfb 56%, #f7ebe7 100%);
  }

  .section-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .main-nav {
    left: 0.5rem;
    right: 0.5rem;
    top: 5rem;
  }

  .hero {
    gap: 1.7rem;
    padding-bottom: 3rem;
    padding-top: calc(var(--header-height) + 2.4rem);
  }

  .hero-art,
  .hero-image {
    min-height: min(118vw, 440px);
  }

  .hero-art {
    width: 100%;
  }

  .hero-image {
    border-radius: 34px;
  }

  .floating-card {
    border-radius: 20px;
    max-width: calc(100% - 2rem);
    padding: 0.75rem 0.9rem;
  }

  .floating-card strong {
    font-size: 0.9rem;
  }

  .top-card {
    top: 0.8rem;
  }

  .bottom-card {
    bottom: 0.8rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
  }

  .hero-intro {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.55rem;
  }

  .button {
    min-height: 50px;
    width: 100%;
  }

  .trust-row {
    gap: 0.45rem;
    margin-top: 1.55rem;
    padding-top: 1rem;
  }

  .trust-row span {
    font-size: 0.78rem;
    padding: 0.48rem 0.65rem;
  }

  .marquee {
    padding: 0.7rem 0;
  }

  .marquee div {
    gap: 1.3rem;
  }

  .tabs-card,
  .experience-card,
  .booking-strip {
    border-radius: 24px;
  }

  .tabs-card {
    padding: 0.65rem;
  }

  .tabs {
    border-radius: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tab-button {
    font-size: 0.9rem;
    min-height: 42px;
    padding: 0.65rem 0.45rem;
  }

  .tab-panel {
    min-height: auto;
    padding: 1.25rem 0.45rem 0.35rem;
  }

  .panel-number {
    font-size: 3.6rem;
    right: 0.25rem;
    top: 1rem;
  }

  .tab-panel h3 {
    max-width: 12ch;
  }

  .tab-panel p {
    font-size: 0.98rem;
  }

  .service-list {
    gap: 0.55rem;
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .service-list li {
    border-radius: 18px;
    padding: 0.75rem 0.85rem;
  }

  .centered {
    margin-bottom: 1.7rem;
    text-align: left;
  }

  .portfolio-grid {
    gap: 0.75rem;
  }

  .instagram-orb {
    height: 56px;
    width: 56px;
  }

  .instagram-orb svg {
    height: 25px;
    width: 25px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  details {
    padding: 1rem;
  }

  summary {
    padding-right: 1rem;
  }

  .booking-strip {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .site-footer {
    gap: 1.25rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.7rem, 12.8vw, 3.25rem);
    line-height: 0.98;
    max-width: 9.8ch;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.05;
  }

  p {
    line-height: 1.65;
  }

  .site-header {
    border-radius: 26px;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-mark {
    font-size: 0.9rem;
    height: 34px;
    width: 34px;
  }

  .brand-text {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    height: 40px;
    width: 40px;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .language-toggle {
    justify-self: start;
    margin: 0.1rem 0 0.15rem;
  }

  .hero-art,
  .hero-image {
    min-height: 350px;
  }

  .hero-actions {
    gap: 0.65rem;
  }

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

  .portfolio-item,
  .portfolio-item.tall,
  .portfolio-item.wide {
    aspect-ratio: 1 / 1.05;
  }

  .experience-card::after {
    height: 18rem;
    right: -9rem;
    top: -9rem;
    width: 18rem;
  }

  .footer-links {
    display: grid;
    gap: 0.75rem;
  }
}

@media (max-width: 360px) {
  .section-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .brand-text {
    max-width: 7.4rem;
  }

  .lang-switch {
    height: 36px;
    width: 96px;
  }

  .lang-knob {
    height: 28px;
    width: 44px;
  }

  .language-toggle.is-fr .lang-knob {
    transform: translateX(44px);
  }
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

@media (max-width: 980px) {
  .hero-art {
    order: 0;
  }
}

@media (max-width: 480px) {
  h1 {
    max-width: 11ch;
  }
}

/* Hotfix v16: keep the bottom booking CTA large and on one line. */
.booking-strip .button {
  flex: 0 0 auto;
  min-height: clamp(76px, 6vw, 110px);
  min-width: clamp(190px, 15vw, 270px);
  padding: 1.15rem clamp(2rem, 3vw, 3.2rem);
  white-space: nowrap;
  word-break: keep-all;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  line-height: 1;
}

@media (max-width: 960px) {
  .booking-strip .button {
    width: min(100%, 360px);
    min-height: 66px;
    min-width: 0;
    align-self: flex-start;
    font-size: 1.05rem;
    padding: 1rem 1.8rem;
  }
}

@media (max-width: 620px) {
  .booking-strip .button {
    width: 100%;
    align-self: stretch;
    min-height: 60px;
  }
}
