@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --ink: #171512;
  --ink-soft: #24201b;
  --cream: #f6f0e7;
  --cream-deep: #eee4d7;
  --paper: #fffaf2;
  --gold: #c9a468;
  --gold-light: #e1c99f;
  --gold-dark: #8f6b39;
  --sage: #66715c;
  --muted: #736d64;
  --line: rgba(42, 35, 26, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(21, 17, 12, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 118px 0;
}

.section-pad-sm {
  padding: 86px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow {
  color: var(--gold-light);
}

.display-title,
.section-title,
.card-title,
.footer-title,
.quote-text,
.pillar-title,
.form-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.display-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.98;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
}

.section-title em,
.display-title em {
  color: var(--gold);
  font-weight: 400;
}

.lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  line-height: 1.8;
}

.section-dark .lead,
.page-hero .lead,
.hero .lead {
  color: rgba(255, 250, 242, 0.75);
}

.copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-dark .copy {
  color: rgba(255, 250, 242, 0.7);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 240ms ease, background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.btn-outline-dark {
  border-color: rgba(23, 21, 18, 0.4);
  color: var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 88px;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: height 260ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.scrolled,
.site-header.header-solid {
  height: 76px;
  border-color: var(--line);
  background: rgba(246, 240, 231, 0.95);
  box-shadow: 0 12px 34px rgba(18, 15, 11, 0.08);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 205px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.site-header.scrolled .brand img,
.site-header.header-solid .brand img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-book {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 23px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 230ms ease, opacity 230ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-toggle.open span {
  background: transparent;
}

.menu-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  padding: 126px 42px 50px;
  background: var(--ink);
  color: var(--cream);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-menu .nav-link::after {
  display: none;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 34px;
}

.mobile-contact {
  margin-top: 50px;
  color: rgba(255, 250, 242, 0.55);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 2;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background: var(--ink) url('https://velvo.lovable.app/assets/hero-bg-DCkilUBt.jpg') center/cover no-repeat;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 12, 9, 0.84) 0%, rgba(15, 12, 9, 0.55) 48%, rgba(15, 12, 9, 0.2) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(15, 12, 9, 0.58), transparent);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 78%);
  padding-top: 80px;
}

.hero .lead {
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.hero-scroll::after {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  align-items: start;
}

.welcome-copy p {
  margin: 0 0 18px;
}

.signature-word {
  margin-top: 40px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading-row .section-title {
  max-width: 720px;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22,.61,.36,1);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 26%, rgba(10, 8, 6, 0.8) 100%);
  content: "";
}

.service-card:hover img {
  transform: scale(1.055);
}

.service-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 24px;
}

.service-index {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.card-title {
  margin: 0 0 9px;
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.65;
}

.services-footer {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
}

.experience-image {
  min-height: 620px;
  background: url('https://velvo.lovable.app/assets/interior-2-DBaQ6h7e.jpg') center/cover no-repeat;
}

.experience-copy {
  display: flex;
  align-items: center;
  padding: 90px clamp(44px, 7vw, 110px);
  background: var(--ink);
  color: var(--cream);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 42px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 250, 242, 0.8);
}

.feature-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 13px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.gallery-grid {
  display: grid;
  height: 720px;
  grid-template-columns: 1.25fr 0.75fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-card {
  min-height: 335px;
  padding: 48px 38px;
  border-right: 1px solid var(--line);
}

.testimonial-card:last-child {
  border-right: 0;
}

.quote-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.8;
}

.quote-text {
  margin: 28px 0 40px;
  font-size: 27px;
  line-height: 1.35;
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.cta-section {
  padding: 0 0 116px;
  background: var(--cream);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 94px 40px;
  background: var(--ink) url('https://velvo.lovable.app/assets/hero-bg-DCkilUBt.jpg') center 54%/cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.78);
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .section-title,
.cta-panel .lead {
  margin-inline: auto;
}

.cta-panel .lead {
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 86px;
  background-color: var(--ink);
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 12, 9, 0.84), rgba(15, 12, 9, 0.4));
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero-services {
  background-image: url('https://velvo.lovable.app/assets/service-hair-GrcjPU0p.jpg');
  background-position: center 48%;
  background-size: cover;
}

.page-hero-about {
  background-image: url('https://velvo.lovable.app/assets/interior-1-BpntzG5B.jpg');
  background-position: center;
  background-size: cover;
}

.page-hero-contact {
  background-image: url('https://velvo.lovable.app/assets/interior-2-DBaQ6h7e.jpg');
  background-position: center;
  background-size: cover;
}

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

.menu-card {
  display: grid;
  min-height: 450px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-card-image {
  min-height: 100%;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.04);
}

.menu-card-body {
  padding: 44px 38px;
}

.menu-card .card-title {
  margin-bottom: 24px;
  font-size: 30px;
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.menu-list li::after {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  content: "";
}

.bespoke-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 66px 70px;
  background: var(--ink);
  color: var(--cream);
}

.bespoke-panel .section-title {
  max-width: 650px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 110px;
  align-items: start;
}

.philosophy-copy p {
  margin: 0 0 18px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  min-height: 265px;
  padding: 44px 38px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar-number {
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.pillar-title {
  margin: 54px 0 16px;
  font-size: 31px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.atelier-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.atelier-copy {
  display: flex;
  align-items: center;
  padding: 88px clamp(40px, 7vw, 100px);
  background: var(--ink);
  color: var(--cream);
}

.atelier-image {
  min-height: 650px;
  background: url('https://velvo.lovable.app/assets/interior-3-CDEiOGmP.jpg') center/cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.form-card {
  padding: 58px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-title {
  margin: 0 0 34px;
  font-size: 38px;
}

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

.field {
  display: grid;
  gap: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.field textarea {
  min-height: 116px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 1px 0 var(--gold-dark);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #9f3f35;
}

.field-error {
  min-height: 16px;
  color: #9f3f35;
  font-size: 11px;
  line-height: 1.35;
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(75, 112, 71, 0.34);
  background: rgba(75, 112, 71, 0.08);
  color: #40583d;
  font-size: 13px;
}

.form-success.show {
  display: block;
}

.contact-info {
  padding-top: 18px;
}

.info-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.info-block:first-of-type {
  border-top: 1px solid var(--line);
}

.info-label {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-value {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.map-wrap {
  position: relative;
  height: 470px;
  overflow: hidden;
  background: var(--cream-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(.12) contrast(.9);
}

.site-footer {
  padding: 76px 0 0;
  background: #11100e;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr;
  gap: 80px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: min(320px, 100%);
}

.footer-brand p {
  max-width: 480px;
  margin: 27px 0 0;
  color: rgba(255, 250, 242, 0.58);
  font-size: 13px;
  line-height: 1.9;
}

.footer-title {
  margin: 5px 0 22px;
  color: var(--gold-light);
  font-size: 20px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 250, 242, 0.66);
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 250, 242, 0.4);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-signature {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.23);
  color: var(--ink);
  transition: transform 220ms ease, background-color 220ms ease;
}

.whatsapp-float:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 200px 1fr 180px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .brand {
    width: 185px;
  }

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

  .service-card {
    min-height: 500px;
  }

  .menu-card {
    grid-template-columns: 1fr;
  }

  .menu-card-image {
    min-height: 300px;
  }

  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 92px 0;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.header-solid {
    height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .welcome-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .experience-grid,
  .atelier-grid {
    grid-template-columns: 1fr;
  }

  .experience-image,
  .atelier-image {
    min-height: 520px;
  }

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

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    min-height: 320px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:first-child {
    min-height: 660px;
    grid-row: span 2;
  }

  .testimonial-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .pillar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-card:last-child,
  .pillar:last-child {
    border-bottom: 0;
  }

  .menu-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bespoke-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-info {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container-shell {
    width: min(100% - 30px, 1180px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .section-pad-sm {
    padding: 64px 0;
  }

  .brand {
    width: 168px;
  }

  .display-title {
    font-size: clamp(48px, 15vw, 70px);
  }

  .section-title {
    font-size: clamp(35px, 11vw, 48px);
  }

  .lead {
    font-size: 17px;
  }

  .hero {
    min-height: 820px;
    background-position: 58% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(15, 12, 9, 0.9), rgba(15, 12, 9, 0.42));
  }

  .hero-content {
    width: 100%;
    padding-top: 70px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

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

  .service-card {
    min-height: 470px;
  }

  .experience-image,
  .atelier-image {
    min-height: 390px;
  }

  .experience-copy,
  .atelier-copy {
    padding: 66px 24px;
  }

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

  .gallery-item,
  .gallery-item:first-child {
    min-height: 360px;
    grid-row: auto;
  }

  .testimonial-card {
    padding: 38px 24px;
  }

  .quote-text {
    font-size: 24px;
  }

  .cta-section {
    padding-bottom: 76px;
  }

  .cta-panel {
    padding: 72px 22px;
  }

  .page-hero {
    min-height: 570px;
    padding: 148px 0 68px;
  }

  .menu-card-body {
    padding: 36px 26px;
  }

  .bespoke-panel {
    padding: 48px 28px;
  }

  .pillars-grid {
    margin-top: 48px;
  }

  .pillar {
    padding: 36px 26px;
  }

  .pillar-title {
    margin-top: 32px;
  }

  .form-card {
    padding: 38px 24px;
  }

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

  .field-full,
  .form-submit {
    grid-column: auto;
  }

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

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
