:root {
  --color-bg: #faf5ec;
  --color-bg-alt: #f2e7d3;
  --color-surface: #ffffff;
  --color-ink: #2a2016;
  --color-ink-soft: #5c4f3f;
  --color-primary: #2f2013;
  --color-primary-light: #46331f;
  --color-accent: #c78a3d;
  --color-accent-dark: #a56f2c;
  --color-accent-light: #eccb92;
  --color-olive: #75784f;
  --color-border: #e4d5bd;

  --shadow-sm: 0 1px 2px rgba(42,32,22,.08), 0 1px 1px rgba(42,32,22,.06);
  --shadow-md: 0 6px 16px rgba(42,32,22,.10), 0 2px 6px rgba(42,32,22,.08);
  --shadow-lg: 0 16px 34px rgba(42,32,22,.16), 0 6px 14px rgba(42,32,22,.10);
  --shadow-xl: 0 26px 60px rgba(42,32,22,.22), 0 10px 22px rgba(42,32,22,.12);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); margin: 0 0 .6em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--color-ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input, textarea { font-family: inherit; }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset .15s ease;
}

.global-container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.global-section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.global-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}
.global-heading-xl { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 700; letter-spacing: -.01em; }
.global-heading-lg { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 1.2rem; }
.global-lead { font-size: 1.1rem; max-width: 62ch; color: var(--color-ink-soft); }

.global-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .96rem;
  min-height: 44px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.global-btn-primary {
  background: var(--color-accent);
  color: #fff9ef;
  box-shadow: var(--shadow-md);
}
.global-btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.global-btn-primary:active { transform: translateY(-1px) scale(.99); }
.global-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.global-btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent-dark); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.global-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  overflow: hidden;
}
.global-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.js-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js-reveal.is-visible { opacity: 1; transform: none; }


.global-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--color-primary);
  transition: box-shadow .25s ease;
}
.global-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1.5rem;
}
.global-logo { display: flex; align-items: center; gap: .6rem; }
.global-logo-icon { width: 34px; height: 34px; }
.global-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: #fbf3e3; letter-spacing: -.01em; }
.global-logo-text em { color: var(--color-accent-light); font-style: normal; }
.global-nav { display: none; gap: 2rem; }
.global-nav a {
  position: relative; color: #e9dcc4; font-weight: 500; font-size: .95rem; padding: .3rem 0;
  transition: color .2s ease;
}
.global-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--color-accent);
  transition: width .3s ease;
}
.global-nav a:hover, .global-nav a[aria-current="page"] { color: #fff; }
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { width: 100%; }
.global-header-cta { display: none; }
.global-menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center;
}
.global-menu-toggle span { width: 22px; height: 2px; background: #f3e8d2; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

@media (min-width: 1024px) {
  .global-nav { display: flex; }
  .global-header-cta { display: inline-flex; }
  .global-menu-toggle { display: none; }
}


.global-mobile-overlay {
  position: fixed; inset: 0; background: rgba(20,14,8,.55);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
  z-index: 290;
}
.global-mobile-overlay.is-active { opacity: 1; visibility: visible; }
.global-mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: 80%; max-width: 340px;
  background: var(--color-primary); z-index: 300;
  transform: translateX(-100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column; padding: 1.5rem 1.5rem 2.2rem;
  box-shadow: var(--shadow-xl);
}
.global-mobile-menu.is-active { transform: translateX(0); }
.global-mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.global-mobile-close { color: #f3e8d2; width: 44px; height: 44px; font-size: 1.1rem; }
.global-mobile-nav { display: flex; flex-direction: column; gap: .3rem; margin-bottom: auto; }
.global-mobile-nav a {
  color: #e9dcc4; font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem;
  padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateX(-16px);
  transition: opacity .4s ease, transform .4s ease, color .2s ease;
}
.global-mobile-menu.is-active .global-mobile-nav a { opacity: 1; transform: none; }
.global-mobile-menu.is-active .global-mobile-nav a:nth-child(1) { transition-delay: .1s; }
.global-mobile-menu.is-active .global-mobile-nav a:nth-child(2) { transition-delay: .17s; }
.global-mobile-menu.is-active .global-mobile-nav a:nth-child(3) { transition-delay: .24s; }
.global-mobile-menu.is-active .global-mobile-nav a:nth-child(4) { transition-delay: .31s; }
.global-mobile-menu.is-active .global-mobile-nav a:nth-child(5) { transition-delay: .38s; }
.global-mobile-nav a:hover { color: #fff; }
.global-mobile-cta { justify-content: center; margin-top: 1.5rem; }


.global-zigzag { display: flex; flex-direction: column; gap: 2rem; align-items: center; margin-bottom: 4rem; }
.global-zigzag:last-child { margin-bottom: 0; }
.global-zigzag-media { flex: 1 1 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; }
.global-zigzag-media img { width: 100%; height: 320px; object-fit: cover; transition: transform .6s ease; }
.global-zigzag-media:hover img { transform: scale(1.06); }
.global-zigzag-content { flex: 1 1 0; }
.home-features-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--color-accent-light); }
.global-zigzag-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-top: .3rem; }

@media (min-width: 900px) {
  .global-zigzag { flex-direction: row; gap: 3.5rem; }
  .global-zigzag.is-reverse { flex-direction: row-reverse; }
}


.home-hero { position: relative; padding: 150px 0 5rem; overflow: hidden; }
.home-hero-inner { display: flex; flex-direction: column; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.home-hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 1; animation: floaty 9s ease-in-out infinite; }
.home-hero-blob--one { width: 420px; height: 420px; background: var(--color-accent-light); top: -120px; right: -100px; }
.home-hero-blob--two { width: 320px; height: 320px; background: var(--color-olive); opacity: .25; bottom: -100px; left: -80px; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0) scale(1);} 50% { transform: translateY(-24px) scale(1.05);} }

.home-hero-copy { max-width: 640px; text-align: center; }
.home-hero-title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.1rem; }
.home-hero-text { font-size: 1.1rem; margin-bottom: 1.8rem; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.home-hero-chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.home-hero-chips span {
  font-size: .85rem; font-weight: 500; padding: .5rem .9rem; border-radius: var(--radius-full);
  background: var(--color-surface); box-shadow: var(--shadow-sm); color: var(--color-ink-soft); display: inline-flex; gap: .4rem; align-items: center;
}
.home-hero-chips i { color: var(--color-accent); }
.home-hero-media { width: 100%; max-width: 560px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.home-hero-media img { width: 100%; height: 380px; object-fit: cover; }

@media (min-width: 1024px) {
  .home-hero-inner { flex-direction: row; text-align: left; align-items: center; }
  .home-hero-copy { text-align: left; }
  .home-hero-actions, .home-hero-chips { justify-content: flex-start; }
}


.home-bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 2.5rem; }
.home-bento-item { position: relative; min-height: 220px; }
.home-bento-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .6s ease; }
.home-bento-item:hover img { transform: scale(1.08); }
.home-bento-item--large { grid-column: span 2; min-height: 340px; }
.home-bento-item--wide { grid-column: span 2; min-height: 220px; }
.home-bento-caption {
  position: relative; z-index: 2; margin-top: auto; align-self: flex-end;
  background: linear-gradient(to top, rgba(24,17,10,.85), transparent);
  color: #fff; padding: 1.6rem 1.2rem .9rem; width: 100%;
}
.home-bento-item { display: flex; }
.home-bento-caption h3 { color: #fff; font-size: 1.05rem; margin-bottom: .2rem; }
.home-bento-caption p { color: #e9dcc4; font-size: .85rem; margin: 0; }

@media (min-width: 700px) {
  .home-bento-grid { grid-template-columns: repeat(4, 1fr); }
  .home-bento-item--large { grid-column: span 2; grid-row: span 2; min-height: auto; }
  .home-bento-item--wide { grid-column: span 2; }
}


.home-consult-inner { display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
.home-consult-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; }
.home-consult-media img { width: 100%; height: 320px; object-fit: cover; }
.home-consult-steps { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.6rem 0; }
.home-consult-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.home-consult-steps span {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--color-accent-light);
  color: var(--color-primary); font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.home-consult-steps h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.home-consult-steps p { margin: 0; font-size: .95rem; }
.home-consult-note {
  background: var(--color-bg-alt); padding: 1rem 1.2rem; border-radius: var(--radius-md);
  font-size: .92rem; display: flex; gap: .6rem; align-items: flex-start; color: var(--color-ink-soft);
}
.home-consult-note i { color: var(--color-accent-dark); margin-top: .15rem; }

@media (min-width: 1024px) {
  .home-consult-inner { flex-direction: row; }
  .home-consult-media, .home-consult-copy { flex: 1; }
}


.global-cta { background: var(--color-primary); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.global-cta-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; justify-content: space-between; }
.global-cta h2 { color: #fbf3e3; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .4rem; }
.global-cta p { color: #d8c6a2; margin: 0; }
@media (min-width: 800px) { .global-cta-inner { flex-direction: row; align-items: center; } }


.global-footer { background: var(--color-primary); color: #d8c6a2; padding-top: 3.5rem; }
.global-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.global-footer-brand p { color: #c7b494; max-width: 34ch; margin-top: 1rem; }
.global-footer-col h3 { color: #fbf3e3; font-size: 1rem; margin-bottom: 1rem; }
.global-footer-col { display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; }
.global-footer-col a, .global-footer-col span { color: #d8c6a2; transition: color .2s ease; }
.global-footer-col a:hover { color: var(--color-accent-light); }
.global-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 1.5rem; text-align: center; }
.global-footer-bottom p { color: #b7a380; font-size: .82rem; margin: 0; }

@media (min-width: 800px) { .global-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }




.story-hero { padding: 150px 0 3rem; }
.story-hero-lead { font-size: 1.1rem; color: var(--color-ink-soft); max-width: 62ch; }
.story-narrative-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.story-narrative-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-narrative-media img { width: 100%; height: 340px; object-fit: cover; }
.story-materials-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 2rem; }
.story-materials-card { padding: 1.8rem; }
.story-materials-card i { font-size: 1.6rem; color: var(--color-accent); margin-bottom: .8rem; display: block; }
.story-materials-card h3 { font-size: 1.15rem; }
.story-timeline-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.story-timeline-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-timeline-media img { width: 100%; height: 320px; object-fit: cover; }
.story-timeline-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.4rem; }
.story-timeline-list li { padding-left: 1.2rem; border-left: 3px solid var(--color-accent-light); }
.story-timeline-list span { font-family: var(--font-heading); font-weight: 700; color: var(--color-accent-dark); display: block; margin-bottom: .2rem; }
.story-values-media { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-values-media img { width: 100%; height: 300px; object-fit: cover; }

@media (min-width: 900px) {
  .story-narrative-inner { flex-direction: row; align-items: center; }
  .story-narrative-media, .story-narrative-text { flex: 1; }
  .story-materials-grid { grid-template-columns: repeat(4, 1fr); }
  .story-timeline-inner { flex-direction: row-reverse; align-items: center; }
  .story-timeline-media, .story-timeline-text { flex: 1; }
}


.collections-hero { padding: 150px 0 3rem; }
.collections-hero-lead { font-size: 1.1rem; color: var(--color-ink-soft); max-width: 66ch; }
.collections-grid-inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.collections-card-media { height: 220px; overflow: hidden; }
.collections-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collections-card:hover .collections-card-media img { transform: scale(1.08); }
.collections-card-body { padding: 1.6rem; }
.collections-card-tag {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-accent-dark); margin-bottom: .5rem;
}
.collections-card-body h2 { font-size: 1.25rem; margin-bottom: .5rem; }
.collections-materials-list { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 1.5rem; }
.collections-materials-list div { padding: 1.4rem; background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.collections-materials-list dt { font-family: var(--font-heading); font-weight: 700; margin-bottom: .4rem; color: var(--color-primary); }
.collections-materials-list dd { margin: 0; color: var(--color-ink-soft); font-size: .95rem; }

@media (min-width: 700px) {
  .collections-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .collections-card--wide { grid-column: span 2; }
  .collections-card--wide .collections-card-media { height: 280px; }
}
@media (min-width: 1000px) { .collections-materials-list { grid-template-columns: repeat(4, 1fr); } }


.office-hero { padding: 150px 0 3rem; }
.office-hero-inner { display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
.office-hero-lead { font-size: 1.1rem; margin: 1rem 0 1.6rem; max-width: 56ch; }
.office-hero-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); width: 100%; }
.office-hero-media img { width: 100%; height: 320px; object-fit: cover; }
.office-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 2rem; }
.office-services-card { padding: 1.8rem; text-align: left; }
.office-services-card i { font-size: 1.6rem; color: var(--color-accent); margin-bottom: .8rem; display: block; }
.office-services-card h3 { font-size: 1.15rem; }
.office-note-inner { display: flex; gap: 1.3rem; align-items: flex-start; background: var(--color-surface); padding: 1.8rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.office-note-icon { font-size: 1.7rem; color: var(--color-accent-dark); flex-shrink: 0; }
.office-context-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.office-context-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.office-context-media img { width: 100%; height: 320px; object-fit: cover; }

@media (min-width: 900px) {
  .office-hero-inner { flex-direction: row; align-items: center; }
  .office-services-grid { grid-template-columns: repeat(2, 1fr); }
  .office-context-inner { flex-direction: row; align-items: center; }
  .office-context-media, .office-context-text { flex: 1; }
}
@media (min-width: 1150px) { .office-services-grid { grid-template-columns: repeat(4, 1fr); } }


.contact-hero { padding: 150px 0 2.5rem; }
.contact-hero-lead { font-size: 1.1rem; max-width: 60ch; }
.contact-info-grid { display: grid; grid-template-columns: repeat(2, 1f
r); } gap: 1.3rem; }
.contact-info-card { padding: 1.6rem; text-align: center; }
.contact-info-card i { font-size: 1.5rem; color: var(--color-accent); margin-bottom: .7rem; display: block; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.contact-info-card p { margin: 0; font-size: .92rem; }
.contact-info-card a { color: var(--color-ink-soft); transition: color .2s ease; }
.contact-info-card a:hover { color: var(--color-accent-dark); }

.contact-form-wrap { background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.6rem, 4vw, 2.8rem); }
.contact-form-intro { max-width: 60ch; margin-bottom: 1.8rem; }
.contact-form-row { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.contact-form-field { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.contact-form-field label { font-family: var(--font-heading); font-weight: 600; font-size: .88rem; color: var(--color-primary); }
.contact-form-field input, .contact-form-field textarea {
  padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border);
  background: var(--color-bg); font-size: .95rem; color: var(--color-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  min-height: 44px; resize: vertical;
}
.contact-form-field input:focus, .contact-form-field textarea:focus {
  border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(199,138,61,.18);
}
.contact-form-field--message textarea { min-height: 44px; }
.contact-form-row--bottom { flex-direction: column; align-items: stretch; gap: 1.2rem; margin-top: .4rem; }
.contact-form-checkbox { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--color-ink-soft); cursor: pointer; }
.contact-form-checkbox input { width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--color-accent); margin-top: .1rem; }
.contact-form-checkbox a { color: var(--color-accent-dark); text-decoration: underline; }
.contact-form-feedback { margin-top: 1rem; font-size: .9rem; color: var(--color-accent-dark); font-weight: 500; min-height: 1.2em; }

@media (min-width: 900px) {
  .contact-form-row { flex-direction: row; align-items: flex-start; }
  .contact-form-row--bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

.contact-map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); line-height: 0; }
.contact-faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.contact-faq-item { overflow: visible; }
.contact-faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--color-primary);
  text-align: left;
}
.contact-faq-question i { transition: transform .3s ease; color: var(--color-accent); flex-shrink: 0; margin-left: 1rem; }
.contact-faq-item.is-open .contact-faq-question i { transform: rotate(180deg); }
.contact-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.contact-faq-item.is-open .contact-faq-answer { max-height: 300px; padding: 0 1.5rem 1.4rem; }
.contact-faq-answer p { margin: 0; font-size: .92rem; }


.thanks-main {
  min-height: 80vh; display: flex; align-items: center; padding: 150px 0 4rem;
  background: radial-gradient(circle at 20% 20%, var(--color-bg-alt), var(--color-bg) 60%);
}
.thanks-wrap { display: flex; justify-content: center; }
.thanks-card {
  background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  padding: clamp(2rem, 5vw, 3.5rem); max-width: 520px; text-align: center;
}
.thanks-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--color-accent-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 1.4rem;
}
.thanks-card h1 { font-size: clamp(1.6rem, 4vw, 2.1rem); }
.thanks-card p { margin-bottom: 1.6rem; }


.privacy-main, .terms-main, .cookies-main { padding-top: 150px; }
.privacy-container, .terms-container, .cookies-container { max-width: 820px; }
.privacy-intro, .terms-intro { font-size: 1.05rem; color: var(--color-ink-soft); margin-bottom: 2.2rem; }
.privacy-list { counter-reset: item; display: flex; flex-direction: column; gap: 1.8rem; }
.privacy-list li { background: var(--color-surface); padding: 1.6rem 1.8rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.privacy-list h2 { font-size: 1.15rem; margin-bottom: .6rem; }
.terms-block { padding: 1.5rem 0; border-bottom: 1px solid var(--color-border); }
.terms-block:last-child { border-bottom: none; }
.terms-block h2 { font-size: 1.15rem; }
.cookies-main h2 { font-size: 1.25rem; margin-top: 2rem; }
.cookies-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .9rem; }
.cookies-table th, .cookies-table td { padding: .8rem 1rem; border: 1px solid var(--color-border); text-align: left; }
.cookies-table th { background: var(--color-bg-alt); font-family: var(--font-heading); }


.global-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--color-surface);
  box-shadow: 0 -10px 30px rgba(42,32,22,.18);
  display: flex; flex-direction: column;
  transform: translateY(110%); transition: transform .5s cubic-bezier(.2,.8,.2,1);
  max-height: 90vh; overflow-y: auto;
}
.global-cookie-banner.is-visible { transform: translateY(0); }
.global-cookie-left, .global-cookie-right { padding: 1.4rem 1.8rem; }
.global-cookie-left { border-bottom: 1px solid var(--color-border); }
.global-cookie-left h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.global-cookie-left p { font-size: .85rem; margin: 0; }
.global-cookie-left a { color: var(--color-accent-dark); text-decoration: underline; }
.global-cookie-toggles { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1rem; }
.global-cookie-toggles label { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--color-ink-soft); }
.global-cookie-toggles input { width: 18px; height: 18px; accent-color: var(--color-accent); }
.global-cookie-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.global-cookie-actions button { font-size: .85rem; padding: .65rem 1.2rem; }

@media (min-width: 900px) {
  .global-cookie-banner { flex-direction: row; align-items: stretch; }
  .global-cookie-left, .global-cookie-right { width: 50%; }
  .global-cookie-left { border-bottom: none; border-right: 1px solid var(--color-border); display: flex; flex-direction: column; justify-content: center; }
  .global-cookie-right { display: flex; flex-direction: column; justify-content: center; }
}