:root {
  --surface: #fbf9f4;
  --surface-dim: #dbdad5;
  --surface-bright: #fbf9f4;
  --surface-lowest: #ffffff;
  --surface-low: #f5f3ee;
  --surface-container: #f0eee9;
  --surface-high: #eae8e3;
  --surface-highest: #e4e2dd;
  --surface-variant: #e4e2dd;
  --on-surface: #1b1c19;
  --on-surface-variant: #44474a;
  --inverse-surface: #30312e;
  --inverse-on-surface: #f2f1ec;
  --outline: #75777a;
  --outline-variant: #c5c6ca;
  --surface-tint: #5d5e61;
  --primary: #17191b;
  --on-primary: #ffffff;
  --primary-container: #2c2e30;
  --on-primary-container: #949598;
  --tertiary: #0d1b1f;
  --tertiary-container: #223034;
  --on-tertiary-container: #89989d;
  --slate-deep: #1a1c1d;
  --cedar-glow: #d4a373;
  --mist-blue: #e2e8eb;
  --herb-sage: #7d8c7b;
  --max: 1200px;
  --side: 64px;
  --unit: 8px;
  --gutter: 24px;
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.texture-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

.top-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  display: flex;
  width: min(100%, var(--max));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--side);
  color: var(--primary);
  background: rgba(251, 249, 244, 0.8);
  backdrop-filter: blur(24px);
}

.brand {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.top-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.top-nav nav a {
  color: var(--on-surface);
  opacity: 0.82;
}

.top-nav nav a:hover,
.top-nav nav .active,
.mobile-menu div a.active {
  color: var(--cedar-glow);
  opacity: 1;
}

.top-nav nav .active,
.mobile-menu div a.active {
  border-bottom: 1px solid var(--cedar-glow);
  padding-bottom: 4px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--primary);
  color: var(--on-primary);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--cedar-glow);
  color: var(--primary);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--slate-deep);
}

.mobile-menu div {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  min-width: 245px;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(251, 249, 244, 0.96);
  box-shadow: 0 28px 80px rgba(26, 28, 29, 0.06);
  backdrop-filter: blur(24px);
}

.mobile-menu div a {
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-menu div a:last-child {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-variant);
  color: var(--cedar-glow);
}

main {
  padding-top: 86px;
}

[id] {
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100svh - 86px));
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14, 16, 17, 0.1), rgba(14, 16, 17, 0.16) 46%, rgba(14, 16, 17, 0.38)),
    radial-gradient(ellipse at 50% 48%, rgba(14, 16, 17, 0.58), rgba(14, 16, 17, 0.3) 44%, rgba(14, 16, 17, 0.52));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 22px;
  color: var(--surface);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.54);
}

.hero-copy::before {
  position: absolute;
  inset: 52px -42px 50px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(14, 16, 17, 0.44), rgba(14, 16, 17, 0.18) 58%, transparent 76%);
  filter: blur(4px);
  content: "";
}

.label {
  margin: 0 0 16px;
  color: var(--cedar-glow);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .label {
  color: var(--primary);
  text-shadow: 0 1px 18px rgba(251, 249, 244, 0.78);
}

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

h1,
h2,
h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 64px;
  line-height: 1.1;
}

h2 {
  margin-bottom: 24px;
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.3;
}

.hero-copy p:not(.label) {
  max-width: 660px;
  margin: 0 auto 32px;
  color: rgba(251, 249, 244, 0.96);
  font-size: 18px;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78);
}

.split-section,
.concept-section,
.services-page,
.about-section,
.offers-section,
.philosophy,
.realisation-section,
.contact-section {
  width: min(var(--max), calc(100% - (var(--side) * 2)));
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
  padding: 104px 0;
}

.split-section.inset {
  width: 100%;
  padding: 80px 0;
}

.image-panel {
  display: flex;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-container);
}

.image-panel img,
.image-card img,
.concept-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.copy-panel p,
.section-heading p:not(.label),
.philosophy-intro p,
.soft-card p,
.dark-card p,
.service-row p,
.contact-copy p {
  color: var(--on-surface-variant);
}

.droplet-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.droplet-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}

.droplet-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 12px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--cedar-glow);
  content: "";
}

.concept-section {
  padding: 96px 0;
}

.centered {
  max-width: 650px;
  margin: 0 auto 56px;
  text-align: center;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.concept-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-high);
}

.concept-card.large {
  min-height: 360px;
}

.concept-card.wide {
  grid-column: auto;
  min-height: 360px;
}

.concept-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 249, 244, 0.9), rgba(251, 249, 244, 0.54), rgba(251, 249, 244, 0.12));
  content: "";
}

.concept-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: none;
}

.concept-card h3 {
  display: flex;
  min-height: 72px;
  align-items: flex-end;
  margin-bottom: 8px;
  font-size: 27px;
}

.concept-card p {
  margin-bottom: 0;
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.6;
}

.philosophy {
  padding: 96px 0;
}

.philosophy-intro {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 48px;
  padding: 64px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(251, 249, 244, 0), rgba(226, 232, 235, 0.48), rgba(251, 249, 244, 0)),
    var(--surface-lowest);
  background-size: 200% 200%;
  animation: atmospherePan 15s ease infinite;
}

.philosophy-intro p {
  max-width: 620px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
}

.soft-card,
.dark-card,
.image-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.soft-card {
  padding: 48px;
  background: var(--surface-container);
  transition: box-shadow 300ms ease, background 300ms ease;
}

.soft-card:hover {
  background: var(--mist-blue);
  box-shadow: 0 30px 90px rgba(26, 28, 29, 0.05);
}

.large-card {
  min-height: 320px;
}

.blue-card {
  background: var(--mist-blue);
}

.card-icon {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--cedar-glow);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2rem;
}

.image-card {
  min-height: 320px;
}

.dark-card {
  min-height: 320px;
  padding: 48px;
  color: var(--surface);
  background: var(--slate-deep);
}

.dark-card p,
.dark-card li {
  color: rgba(251, 249, 244, 0.78);
}

.dark-card ul {
  margin: 28px 0 0;
  padding-left: 18px;
}

.dark-card li::marker {
  color: var(--cedar-glow);
}

.realisation-section {
  padding: 88px 0 36px;
}

.services-page {
  padding: 28px 0 96px;
}

.about-section,
.offers-section {
  padding: 96px 0;
  border-top: 1px solid var(--surface-variant);
}

.services-page > .section-heading,
.about-section > .section-heading,
.offers-section > .section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.infusion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  margin: 56px 0;
  padding: 64px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(251, 249, 244, 0), rgba(226, 232, 235, 0.48), rgba(251, 249, 244, 0)),
    var(--surface-container);
  background-size: 200% 200%;
  animation: atmospherePan 15s ease infinite;
}

.infusion-copy-card {
  max-width: 560px;
}

.infusion-image-grid img:first-child {
  object-position: 58% center;
}

.ritual-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  margin: 24px 0 0;
}

.ritual-card dt {
  color: var(--cedar-glow);
  font-weight: 700;
}

.ritual-card dd {
  margin: 0;
  color: var(--on-surface-variant);
}

.scent-card img {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: start;
  object-fit: cover;
  object-position: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
}

.scent-card h4 {
  margin: 20px 0 6px;
  color: var(--cedar-glow);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.atmosphere-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  margin: 56px 0;
  padding: 64px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(251, 249, 244, 0), rgba(226, 232, 235, 0.48), rgba(251, 249, 244, 0)),
    var(--surface-container);
  background-size: 200% 200%;
  animation: atmospherePan 15s ease infinite;
}

.mini-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.mini-image-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: start;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cedar-glow);
  border-bottom: 1px solid transparent;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.text-link:hover {
  border-bottom-color: var(--cedar-glow);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
  margin-bottom: 48px;
}

.about-hero > div:first-child {
  max-width: 620px;
}

.portrait-panel {
  aspect-ratio: 4 / 5;
  min-height: 430px;
  max-height: 560px;
}

.portrait-panel img {
  object-position: center 26%;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 96px);
  margin-bottom: 52px;
}

.split-copy > div > p {
  color: var(--on-surface-variant);
  font-size: 18px;
  line-height: 1.7;
}

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.two-cards article {
  padding-left: 20px;
  border-left: 4px solid var(--cedar-glow);
}

.outside-view-card {
  margin-top: 36px;
  padding: 28px;
  border-left: 4px solid var(--cedar-glow);
  background: var(--surface-lowest);
}

.outside-view-card h3 {
  font-size: 26px;
}

.outside-view-card p {
  margin-bottom: 0;
  color: var(--on-surface-variant);
}

.partner-note {
  max-width: 920px;
  margin: 0 0 40px;
  padding: 32px 40px;
  border-left: 4px solid var(--cedar-glow);
  background: var(--surface-lowest);
}

.partner-note p {
  margin-bottom: 0;
  color: var(--on-surface-variant);
  font-size: 17px;
  line-height: 1.7;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: stretch;
}

.offer-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 40px;
}

.offer-card.featured-offer {
  background: var(--mist-blue);
}

.offer-card h3 {
  min-height: 112px;
  margin-bottom: 18px;
  font-size: 30px;
}

.offer-card > p:not(.label) {
  margin-bottom: 28px;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 20px;
  color: var(--on-surface-variant);
  font-size: 0.94rem;
  line-height: 1.55;
}

.offer-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 10px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--cedar-glow);
  content: "";
}

.offer-fit {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--outline-variant);
}

.offer-fit h4 {
  margin: 0 0 8px;
  color: var(--cedar-glow);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-fit p {
  margin-bottom: 28px;
  color: var(--on-surface-variant);
  font-size: 0.94rem;
  line-height: 1.6;
}

.offer-card .button {
  width: 100%;
  min-height: 48px;
  padding-right: 14px;
  padding-left: 14px;
  text-align: center;
}

.centered-panel {
  text-align: center;
}

.service-row article {
  padding-top: 12px;
}

.service-row span {
  display: block;
  width: 12px;
  height: 18px;
  margin-bottom: 24px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--cedar-glow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 96px 0;
  border-top: 1px solid var(--surface-variant);
}

.contact-copy {
  width: min(760px, 100%);
  max-width: 760px;
  justify-self: center;
}

.contact-form {
  position: relative;
  width: min(760px, 100%);
  justify-self: center;
  display: grid;
  gap: 24px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--surface-lowest);
  box-shadow: 0 28px 80px rgba(26, 28, 29, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: var(--on-surface);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--outline-variant);
  border-radius: 0;
  padding: 12px 0;
  color: var(--on-surface);
  background: transparent;
  font: inherit;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid var(--outline-variant);
  accent-color: var(--primary);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--cedar-glow);
}

.contact-form .button {
  width: max-content;
  margin-top: 8px;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0;
}

.checkbox-label a {
  color: var(--primary);
  border-bottom: 1px solid var(--cedar-glow);
}

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

.legal-page {
  width: min(920px, calc(100% - (var(--side) * 2)));
  margin: 0 auto;
  padding: 168px 0 112px;
}

.legal-content {
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--surface-lowest);
  box-shadow: 0 28px 80px rgba(26, 28, 29, 0.05);
}

.legal-content h1 {
  margin: 0 0 40px;
  font-size: 64px;
  line-height: 1.1;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 32px;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--on-surface-variant);
}

.legal-content a {
  color: var(--primary);
  border-bottom: 1px solid var(--cedar-glow);
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.status-actions .button:not(.primary) {
  border-color: var(--primary);
  color: var(--primary);
}

.status-list {
  margin: 18px 0 0;
}

.legal-content ul {
  margin: 16px 0 28px;
  padding-left: 22px;
}

.pdf-panel {
  margin-top: 32px;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--surface-container);
}

.pdf-frame {
  display: block;
  width: 100%;
  height: min(78vh, 860px);
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-lowest);
}

.legal-content .button {
  color: var(--on-primary);
  border-bottom: 0;
}


.seo-section,
.faq-section {
  width: min(var(--max), calc(100% - (var(--side) * 2)));
  margin: 0 auto;
  padding: 96px 0;
}

.pain-section {
  border-top: 1px solid var(--surface-variant);
}

.insight-grid,
.faq-list {
  display: grid;
  gap: var(--gutter);
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.insight-grid .soft-card h3 {
  min-height: 0;
}

.faq-section {
  border-top: 1px solid var(--surface-variant);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
}

.faq-list details {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--surface-lowest);
  box-shadow: 0 20px 60px rgba(26, 28, 29, 0.04);
}

.faq-list summary {
  cursor: pointer;
  color: var(--primary);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  margin-left: 16px;
  color: var(--cedar-glow);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 18px 0 0;
  color: var(--on-surface-variant);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 36px var(--side) 30px;
  color: rgba(251, 249, 244, 0.7);
  background: var(--slate-deep);
}

.site-footer > * {
  width: auto;
}

@keyframes atmospherePan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-contact {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
  color: rgba(251, 249, 244, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
}

.footer-email {
  width: max-content;
  justify-self: center;
  color: var(--surface);
  border-bottom: 1px solid rgba(212, 163, 115, 0.65);
  font-weight: 600;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 249, 244, 0.14);
}

.footer-offices address {
  margin: 0;
  padding: 0 20px;
  color: rgba(251, 249, 244, 0.62);
  font-style: normal;
}

.footer-offices address + address {
  border-left: 1px solid rgba(251, 249, 244, 0.14);
}

.footer-offices strong {
  margin-bottom: 6px;
  color: var(--surface);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-offices span {
  display: block;
}

.site-footer > p:last-child {
  color: rgba(251, 249, 244, 0.46);
  font-size: 0.78rem;
  text-align: center;
}

.film-grain {
  position: relative;
}

.film-grain::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  content: "";
}

@media (max-width: 900px) {
  :root {
    --side: 20px;
  }

  .top-nav {
    align-items: center;
    flex-wrap: nowrap;
    gap: 18px;
  }

  .top-nav > nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  main {
    padding-top: 78px;
  }

  [id] {
    scroll-margin-top: 104px;
  }

  .hero {
    min-height: calc(100svh - 78px);
  }

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

  .approach-section .responsive-optional-image {
    display: none;
  }

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .infusion-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 40px 0 48px;
    padding: 32px 24px;
  }

  .about-hero,
  .split-copy,
  .infusion-grid,
  .atmosphere-panel {
    grid-template-columns: 1fr;
  }

  .about-hero {
    margin-bottom: 44px;
  }

  .split-copy {
    margin-bottom: 48px;
  }

  .infusion-grid {
    margin: 40px 0 64px;
  }

  .split-section.inset {
    padding: 40px 0 56px;
  }

  .image-panel {
    min-height: 390px;
  }

  .philosophy-grid,
  .concept-grid,
  .offer-grid,
  .service-row,
  .two-cards,
  .insight-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .concept-card.wide {
    grid-column: auto;
  }

  
.seo-section,
.faq-section {
  width: min(var(--max), calc(100% - (var(--side) * 2)));
  margin: 0 auto;
  padding: 96px 0;
}

.pain-section {
  border-top: 1px solid var(--surface-variant);
}

.insight-grid,
.faq-list {
  display: grid;
  gap: var(--gutter);
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.insight-grid .soft-card h3 {
  min-height: 0;
}

.faq-section {
  border-top: 1px solid var(--surface-variant);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
}

.faq-list details {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--surface-lowest);
  box-shadow: 0 20px 60px rgba(26, 28, 29, 0.04);
}

.faq-list summary {
  cursor: pointer;
  color: var(--primary);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  margin-left: 16px;
  color: var(--cedar-glow);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 18px 0 0;
  color: var(--on-surface-variant);
}

.site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .top-nav {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    font-size: 1.28rem;
  }

  h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  h3,
  .concept-card h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-copy p:not(.label) {
    font-size: 18px;
    line-height: 1.7;
  }

  .hero-copy {
    text-align: center;
  }

  .split-section,
  .concept-section,
  .services-page,
  .about-section,
  .offers-section,
  .philosophy,
  .realisation-section,
  .contact-section,
  .legal-page,
  .seo-section,
  .faq-section {
    width: min(100% - 40px, var(--max));
  }

  .concept-section,
  .about-section,
  .offers-section,
  .philosophy,
  .seo-section,
  .faq-section {
    padding: 64px 0;
  }

  .realisation-section {
    padding: 64px 0 28px;
  }

  .services-page {
    padding: 20px 0 64px;
  }

  .atmosphere-panel {
    margin: 48px 0;
    padding: 32px 24px;
  }

  .mini-image-grid {
    grid-template-columns: 1fr;
  }

  .mini-image-grid img:nth-child(2) {
    display: none;
  }

  .about-hero {
    margin-bottom: 32px;
  }

  .portrait-panel {
    min-height: 360px;
  }

  .split-copy {
    gap: 28px;
    margin-bottom: 40px;
  }

  .two-cards {
    gap: 24px;
    margin-top: 28px;
  }

  .service-row {
    gap: 28px;
    margin-top: 32px;
  }

  .outside-view-card {
    margin-top: 28px;
    padding: 24px;
  }

  .partner-note {
    padding: 28px 24px;
  }

  .offer-card {
    padding: 32px 24px;
  }

  .offer-card h3 {
    min-height: 0;
    font-size: 28px;
  }

  .offer-list {
    gap: 9px;
  }

  .concept-card,
  .concept-card.large,
  .concept-card.wide,
  .image-card,
  .dark-card,
  .large-card {
    min-height: 310px;
  }

  .philosophy-intro {
    min-height: 280px;
    margin-bottom: 40px;
    padding: 40px 24px;
  }

  .soft-card,
  .dark-card,
  .contact-form,
  .legal-content {
    padding: 32px 24px;
  }

  .legal-page {
    padding-top: 120px;
    padding-bottom: 72px;
  }

  .legal-content h1 {
    font-size: 40px;
  }

  .legal-content h2 {
    font-size: 28px;
  }

  .footer-contact {
    gap: 16px;
    font-size: 0.8rem;
  }

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

  .footer-offices address {
    padding: 0;
  }

  .footer-offices address + address {
    padding-top: 14px;
    border-top: 1px solid rgba(251, 249, 244, 0.14);
    border-left: 0;
  }

  .contact-form .button {
    width: 100%;
  }
}
