/* ============================================================
   DAXELE DAMEXI - Main Stylesheet
   Design: Ink & Paper | 2026
   ============================================================ */


:root {
  --ink: #1a1714;
  --ink-soft: #3d3830;
  --paper: #f5f0e8;
  --paper-warm: #ede7d9;
  --paper-dark: #d9d0be;
  --accent: #8b6f47;
  --accent-light: #b8956a;
  --accent-muted: #c4a882;
  --text-body: #2e2a24;
  --text-muted: #6b6255;
  --white: #faf8f4;

  --shadow-sm: 0 1px 3px rgba(26,23,20,0.08), 0 1px 2px rgba(26,23,20,0.04);
  --shadow-md: 0 4px 12px rgba(26,23,20,0.10), 0 2px 4px rgba(26,23,20,0.06);
  --shadow-lg: 0 12px 32px rgba(26,23,20,0.14), 0 4px 8px rgba(26,23,20,0.08);
  --shadow-xl: 0 24px 64px rgba(26,23,20,0.18), 0 8px 16px rgba(26,23,20,0.10);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --container-max: 1280px;
  --container-narrow: 800px;
  --container-wide: 1440px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--paper);
  color: var(--text-body);
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a {
  color: var(--accent);
  transition: color 0.25s ease;
}

a:hover { color: var(--accent-light); }


.CookieBar {
  background: var(--ink);
  color: rgba(245,240,232,0.9);
  font-size: 0.8rem;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  transition: max-height 0.4s ease, padding 0.4s ease;
  max-height: 0;
  padding: 0 2rem;
}

.CookieBar.is-visible {
  max-height: fit-content;
  padding: 0.75rem 2rem;
}

.CookieBar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.CookieBar-text {
  flex: 1;
  min-width: 200px;
}

.CookieBar-text a {
  color: var(--accent-muted);
  text-decoration: underline;
}

.CookieBar-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.CookieBar-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid;
  transition: background 0.25s ease, color 0.25s ease;
  min-height: 32px;
}

.CookieBar-btn--accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.CookieBar-btn--accept:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.CookieBar-btn--decline {
  background: transparent;
  color: rgba(245,240,232,0.7);
  border-color: rgba(245,240,232,0.3);
}

.CookieBar-btn--decline:hover {
  background: rgba(245,240,232,0.1);
  color: var(--white);
}


.SiteHeader-hamburger { display: none; }

@media (max-width: 900px) {
  .SiteHeader-nav { display: none; }
  .SiteHeader-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .SiteHeader-mobile { display: block; }
}


.Section {
  padding: var(--space-xl) 0;
  container-type: inline-size;
  container-name: section;
}

.Section--light { background: var(--paper); }
.Section--paper { background: var(--paper-warm); }
.Section--dark { background: var(--ink); }
.Section--map { background: var(--paper-warm); padding: var(--space-lg) 0; }
.Section--map-full { background: var(--paper); padding: var(--space-md) 0 var(--space-lg); }
.Section--cta { background: var(--ink); }
.Section--accent-strip { background: var(--paper); }

.Section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.Section-container--narrow {
  max-width: var(--container-narrow);
}

.Section-container--wide {
  max-width: var(--container-wide);
  padding: 0 2rem;
}

.Section-header {
  margin-bottom: 3rem;
}

.Section-header--asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.Section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.Section-label--light { color: var(--accent-muted); }

.Section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}

.Section-heading--light { color: var(--white); }

.Section-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
}


.ProcessGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  container-type: inline-size;
  container-name: process-grid;
}

@container process-grid (max-width: 600px) {
  .ProcessGrid { grid-template-columns: 1fr; }
}

.ProcessCard {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.ProcessCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-muted);
}

.ProcessCard-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--paper-dark);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.ProcessCard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.ProcessCard-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}


.ServicesGrid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.ServiceCard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  container-type: inline-size;
  container-name: service-card;
}

.ServiceCard--reverse { direction: rtl; }
.ServiceCard--reverse > * { direction: ltr; }

@container service-card (max-width: 700px) {
  .ServiceCard { grid-template-columns: 1fr; }
  .ServiceCard--reverse { direction: ltr; }
}

.ServiceCard-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.ServiceCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ServiceCard-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.ServiceCard-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.ServiceCard-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.75);
  margin-bottom: 1.5rem;
}

.ServiceCard-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-muted);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.ServiceCard-link:hover {
  color: var(--accent-light);
  gap: 0.75rem;
}


.CommSection {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
  container-type: inline-size;
  container-name: comm-section;
}

@container comm-section (max-width: 800px) {
  .CommSection { grid-template-columns: 1fr; gap: 2.5rem; }
}

.CommSection-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

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

.CommSection-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.CommSection-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.CommSection-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.CommSection-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.CommSection-point i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}


.GalleryGrid {
  display: grid;
  grid-template-columns: 7fr 5fr 5fr;
  gap: 1rem;
  container-type: inline-size;
  container-name: gallery;
}

@container gallery (max-width: 700px) {
  .GalleryGrid { grid-template-columns: 1fr; }
  .GalleryItem--large { aspect-ratio: 16/9; }
}

.GalleryItem {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.GalleryItem--large { aspect-ratio: 3/2; }

.GalleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.GalleryItem-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.GalleryItem:hover img { transform: scale(1.06); }
.GalleryItem:hover .GalleryItem-overlay {
  background: rgba(26,23,20,0.45);
  opacity: 1;
}


.WhySection {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 5rem;
  align-items: center;
  container-type: inline-size;
  container-name: why-section;
}

@container why-section (max-width: 700px) {
  .WhySection { grid-template-columns: 1fr; gap: 2.5rem; }
  .WhySection-visual { order: -1; }
}

.WhySection-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.WhySection-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.WhySection-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

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


.CtaBlock {
  text-align: center;
  padding: 4rem 2rem;
}

.CtaBlock-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 1rem;
}

.CtaBlock-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.CtaBlock-desc {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.CtaBlock-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.LocationSection {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 4rem;
  align-items: start;
  container-type: inline-size;
  container-name: location;
}

@container location (max-width: 700px) {
  .LocationSection { grid-template-columns: 1fr; gap: 2rem; }
}

.LocationSection-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.LocationSection-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.LocationDetail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.LocationDetail i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.LocationDetail div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.LocationDetail strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.LocationDetail span, .LocationDetail a {
  font-size: 0.95rem;
  color: var(--text-body);
  text-decoration: none;
}

.LocationDetail a:hover { color: var(--accent); }

.LocationSection-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}

.Btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(139,111,71,0.3);
}

.Btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139,111,71,0.4);
  color: var(--white);
}

.Btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.Btn--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.Btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,240,232,0.4);
}

.Btn--ghost:hover {
  background: rgba(245,240,232,0.1);
  border-color: rgba(245,240,232,0.7);
  color: var(--white);
}

.Btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
}

.Btn--full { width: 100%; }


.FormGroup { margin-bottom: 1.25rem; }

.FormLabel {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.FormLabel-required { color: var(--accent); }

.FormInput, .FormTextarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--paper-dark);
  border-radius: var(--radius-md);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
}

.FormInput:focus, .FormTextarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,111,71,0.12);
}

.FormTextarea {
  resize: vertical;
  min-height: 100px;
}

.FormGroup--checkbox { margin-top: 1.5rem; }

.FormCheckbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.FormCheckbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.FormCheckbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--paper-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease;
  margin-top: 1px;
}

.FormCheckbox input:checked + .FormCheckbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.FormCheckbox input:checked + .FormCheckbox-custom::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.FormCheckbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.FormError {
  background: #fdf0f0;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #8b2020;
  margin-bottom: 1rem;
}


.ConsultLayout {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4rem;
  align-items: start;
  container-type: inline-size;
  container-name: consult;
}

@container consult (max-width: 700px) {
  .ConsultLayout { grid-template-columns: 1fr; }
}

.FormCard {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.FormCard-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.FormCard-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ConsultInfo {
  background: var(--paper-warm);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.ConsultInfo-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.ConsultStep {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.ConsultStep-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ConsultStep-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.ConsultStep-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.ConsultContact {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.ConsultContact-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.ConsultContact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.ConsultContact-item i { color: var(--accent); }
.ConsultContact-item a { color: var(--text-body); text-decoration: none; }
.ConsultContact-item a:hover { color: var(--accent); }


.FactsStrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  container-type: inline-size;
  container-name: facts;
}

@container facts (max-width: 700px) {
  .FactsStrip { grid-template-columns: repeat(2, 1fr); }
}

@container facts (max-width: 400px) {
  .FactsStrip { grid-template-columns: 1fr; }
}

.FactItem {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.FactItem i {
  color: var(--accent-muted);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.FactItem div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.FactItem strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

.FactItem span {
  font-size: 0.9rem;
  color: var(--white);
}

.ContactLayout {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 5rem;
  align-items: start;
  container-type: inline-size;
  container-name: contact;
}

@container contact (max-width: 700px) {
  .ContactLayout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.ContactLayout-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.ContactLayout-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.ContactForm-row { display: flex; flex-direction: column; }

.ContactDetails {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ContactDetail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ContactDetail-icon {
  width: 40px;
  height: 40px;
  background: var(--paper-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.ContactDetail-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ContactDetail-body strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ContactDetail-body a, .ContactDetail-body address, .ContactDetail-body span {
  font-size: 0.95rem;
  color: var(--text-body);
  text-decoration: none;
  font-style: normal;
  line-height: 1.5;
}

.ContactDetail-body a:hover { color: var(--accent); }


.ValuesIntro {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 1rem;
  container-type: inline-size;
  container-name: values-intro;
}

@container values-intro (max-width: 700px) {
  .ValuesIntro { grid-template-columns: 1fr; }
}

.ValuesIntro-lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.ValuesIntro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.ValuesQuote {
  background: var(--ink);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}

.ValuesQuote p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
}

.ValuesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  container-type: inline-size;
  container-name: values-grid;
}

@container values-grid (max-width: 800px) {
  .ValuesGrid { grid-template-columns: repeat(2, 1fr); }
}

@container values-grid (max-width: 500px) {
  .ValuesGrid { grid-template-columns: 1fr; }
}

.ValueCard {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.ValueCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ValueCard-icon {
  width: 44px;
  height: 44px;
  background: rgba(139,111,71,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.ValueCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.ValueCard-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.ApproachSection {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 5rem;
  align-items: center;
  container-type: inline-size;
  container-name: approach;
}

@container approach (max-width: 700px) {
  .ApproachSection { grid-template-columns: 1fr; gap: 2.5rem; }
}

.ApproachSection-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

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


.GuideNav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.GuideNav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--paper-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  min-height: 44px;
}

.GuideNav-item i { color: var(--accent); font-size: 0.85rem; }

.GuideNav-item:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.GuideNav-item:hover i { color: var(--white); }

.GuideSection {
  container-type: inline-size;
  container-name: guide-section;
}

.GuideSection-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.GuideSection-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--paper-dark);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.GuideSection-number--light { color: rgba(245,240,232,0.2); }

.GuideSection-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.15;
}

.GuideSection-heading--light { color: var(--white); }

.GuideSection-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@container guide-section (max-width: 700px) {
  .GuideSection-body { grid-template-columns: 1fr; gap: 2rem; }
}

.GuideSection--reverse .GuideSection-body {
  direction: rtl;
}

.GuideSection--reverse .GuideSection-body > * { direction: ltr; }

.GuideSection-text p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.GuideSection-subheading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.GuideSection-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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


.LegalPage { padding-top: 80px; }

.LegalPage-header {
  background: var(--ink);
  padding: 5rem 2rem 3rem;
}

.LegalPage-header--cookies {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}

.LegalPage-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.LegalPage-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.LegalPage-date {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.04em;
}

.LegalPage-body {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .LegalPage-body { grid-template-columns: 1fr; }
}

.LegalToc {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.LegalToc-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--paper-dark);
  user-select: none;
}

.LegalToc-toggle i {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.LegalToc.is-open .LegalToc-toggle i { transform: rotate(180deg); }

.LegalToc-list {
  padding: 0.75rem 0;
}

@media (max-width: 900px) {
  .LegalToc-list { display: none; }
  .LegalToc.is-open .LegalToc-list { display: block; }
}

.LegalToc-item {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.LegalToc-item:hover {
  color: var(--accent);
  background: rgba(139,111,71,0.05);
}

.LegalToc-item.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(139,111,71,0.06);
  font-weight: 600;
}

.LegalContent-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--paper-dark);
}

.LegalSection {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--paper-dark);
}

.LegalSection:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.LegalSection h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.LegalSection p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.LegalSection p:last-child { margin-bottom: 0; }

.LegalSection a { color: var(--accent); }


.SiteFooter {
  background: var(--ink);
  color: rgba(245,240,232,0.7);
  padding: var(--space-xl) 0 0;
  margin-top: auto;
}

.SiteFooter-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

@media (max-width: 800px) {
  .SiteFooter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.SiteFooter-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.SiteFooter-logo span { color: var(--accent-light); }

.SiteFooter-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.5);
  max-width: 280px;
}

.SiteFooter-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 600px) {
  .SiteFooter-nav { grid-template-columns: 1fr 1fr; }
}

.SiteFooter-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.SiteFooter-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0.5rem;
}

.SiteFooter-col a, .SiteFooter-col span {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.SiteFooter-col a:hover { color: var(--accent-light); }

.SiteFooter-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: rgba(245,240,232,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}


.InnerHero {
  padding: 10rem 2rem 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.InnerHero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

.InnerHero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.InnerHero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 1rem;
  display: block;
}

.InnerHero-heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.InnerHero-desc {
  font-size: 1.125rem;
  color: rgba(245,240,232,0.75);
  max-width: 600px;
  line-height: 1.7;
}


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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


@media (max-width: 1024px) {
  .Section-header--asymmetric { grid-template-columns: 1fr; }
  .CommSection { grid-template-columns: 1fr; }
  .WhySection { grid-template-columns: 1fr; }
  .ServiceCard { grid-template-columns: 1fr; }
  .ServiceCard--reverse { direction: ltr; }
  .GalleryGrid { grid-template-columns: 1fr 1fr; }
  .GalleryItem--large { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .ProcessGrid { grid-template-columns: 1fr; }
  .ValuesGrid { grid-template-columns: 1fr 1fr; }
  .ConsultLayout { grid-template-columns: 1fr; }
  .LocationSection { grid-template-columns: 1fr; }
  .ApproachSection { grid-template-columns: 1fr; }
  .GuideSection-body { grid-template-columns: 1fr; }
  .GuideSection--reverse .GuideSection-body { direction: l
tr; }
  .GalleryGrid { grid-template-columns: 1fr; }
  .GalleryItem--large { grid-column: span 1; }
  .CtaBlock-actions { flex-direction: column; align-items: center; }
  .PageHero-content { grid-template-columns: 1fr; }
  .PageHero-aside { display: none; }
  .LegalPage-body { grid-template-columns: 1fr; }
  .ValuesIntro { grid-template-columns: 1fr; }
  .ContactLayout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ValuesGrid { grid-template-columns: 1fr; }
  .SiteFooter-nav { grid-template-columns: 1fr; }
  .FactsStrip { grid-template-columns: 1fr 1fr; }
  .GuideNav { gap: 0.5rem; }
  .GuideNav-item { font-size: 0.8rem; padding: 0.4rem 1rem; }
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}