:root {
  --color-primary: #bd5b34;
  --color-secondary: #1f3a3d;
  --color-accent: #d9a441;
  --color-background: #fbf5ee;
  --color-text: #2a2420;

  --color-primary-light: color-mix(in oklch, var(--color-primary), white 30%);
  --color-primary-lighter: color-mix(in oklch, var(--color-primary), white 55%);
  --color-primary-dark: color-mix(in oklch, var(--color-primary), black 20%);
  --color-secondary-light: color-mix(in oklch, var(--color-secondary), white 20%);
  --color-secondary-lighter: color-mix(in oklch, var(--color-secondary), white 55%);
  --color-secondary-dark: color-mix(in oklch, var(--color-secondary), black 15%);
  --color-accent-light: color-mix(in oklch, var(--color-accent), white 35%);
  --color-accent-dark: color-mix(in oklch, var(--color-accent), black 15%);
  --color-surface: color-mix(in oklch, var(--color-background), white 55%);
  --color-surface-alt: color-mix(in oklch, var(--color-background), var(--color-secondary) 4%);
  --color-border: color-mix(in oklch, var(--color-secondary), var(--color-background) 82%);
  --color-text-muted: color-mix(in oklch, var(--color-text), var(--color-background) 40%);

  --shadow-sm: 0 1px 2px color-mix(in oklch, var(--color-secondary), transparent 88%),
               0 1px 1px color-mix(in oklch, var(--color-secondary), transparent 92%);
  --shadow-md: 0 6px 16px color-mix(in oklch, var(--color-secondary), transparent 84%),
               0 2px 6px color-mix(in oklch, var(--color-secondary), transparent 90%);
  --shadow-lg: 0 20px 45px color-mix(in oklch, var(--color-secondary), transparent 80%),
               0 8px 20px color-mix(in oklch, var(--color-secondary), transparent 88%),
               0 2px 6px color-mix(in oklch, var(--color-secondary), transparent 92%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --font-heading: 'Crimson Pro', serif;
  --font-body: 'Albert Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-secondary-dark);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}
p { margin: 0 0 var(--space-sm); color: var(--color-text); }
a { color: var(--color-primary); text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}
.section-heading {
  font-size: clamp(1.7rem, 3vw + 1rem, 2.6rem);
  margin-bottom: var(--space-sm);
}
.section-lead {
  color: var(--color-text-muted);
  max-width: 60ch;
  font-size: 1.05rem;
}

.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  min-height: 44px;
}
.button-primary {
  background: var(--color-primary);
  color: #fff9f4;
  box-shadow: var(--shadow-md);
}
.button-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff9f4;
}
.button-secondary {
  background: transparent;
  color: var(--color-secondary-dark);
  border-color: var(--color-border);
}
.button-secondary:hover {
  background: var(--color-surface-alt);
  border-color: var(--color-secondary-light);
  transform: translateY(-2px);
}


.main-navigation {
  position: sticky;
  top: 0;
  z-index: 500;
  background: color-mix(in oklch, var(--color-background), white 25%);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .2s ease;
}
.navigation-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navigation-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-secondary-dark);
}
.navigation-logo { width: 36px; height: 36px; }
.navigation-links {
  display: flex;
  gap: .4rem;
  background: var(--color-surface-alt);
  padding: .35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}
.navigation-pill {
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 500;
  color: var(--color-secondary-dark);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.navigation-pill:hover { background: color-mix(in oklch, var(--color-primary), white 80%); color: var(--color-primary-dark); }
.navigation-pill.is-active {
  background: var(--color-primary);
  color: #fff9f4;
  box-shadow: var(--shadow-sm);
}
.navigation-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .6rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.navigation-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-secondary-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-links {
  flex: 1;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem 2.5rem;
  position: relative;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  color: #fbf5ee;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 600;
  transform: translateX(-30px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.mobile-menu-overlay.is-open .mobile-menu-links a { transform: translateX(0); opacity: 1; }
.mobile-menu-overlay.is-open .mobile-menu-links a:nth-child(1) { transition-delay: .05s; }
.mobile-menu-overlay.is-open .mobile-menu-links a:nth-child(2) { transition-delay: .1s; }
.mobile-menu-overlay.is-open .mobile-menu-links a:nth-child(3) { transition-delay: .15s; }
.mobile-menu-overlay.is-open .mobile-menu-links a:nth-child(4) { transition-delay: .2s; }
.mobile-menu-overlay.is-open .mobile-menu-links a:nth-child(5) { transition-delay: .25s; }
.mobile-menu-links a:hover { color: var(--color-accent-light); }
.mobile-menu-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: none;
}
.mobile-menu-visual img { width: 100%; height: 100%; object-fit: cover; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(251,245,238,.9);
  color: var(--color-secondary-dark);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform .25s ease, background .25s ease;
}
.mobile-menu-close:hover { transform: rotate(90deg); }


.welcome-banner {
  min-height: 88vh;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
  position: relative;
}
.welcome-banner-inner {
  flex: 1.1;
  animation: heroRise .9s ease both;
}
.welcome-banner-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}
.hero-heading {
  font-size: clamp(2.2rem, 4.4vw + 1rem, 4rem);
  margin-bottom: var(--space-md);
}
.hero-rotating-word {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  height: 1.2em;
  overflow: hidden;
  color: var(--color-primary);
  min-width: 8ch;
}
.hero-rotating-word span {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: rotateWord 8s infinite;
}
.hero-rotating-word span:nth-child(1) { animation-delay: 0s; }
.hero-rotating-word span:nth-child(2) { animation-delay: 2s; }
.hero-rotating-word span:nth-child(3) { animation-delay: 4s; }
.hero-rotating-word span:nth-child(4) { animation-delay: 6s; }
@keyframes rotateWord {
  0% { opacity: 0; transform: translateY(30px); }
  5% { opacity: 1; transform: translateY(0); }
  20% { opacity: 1; transform: translateY(0); }
  27% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 0; transform: translateY(-30px); }
}
.welcome-banner-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-lg);
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.welcome-banner-visual {
  flex: 1;
  position: relative;
  aspect-ratio: 4/5;
  animation: heroRise 1.1s ease both;
}
.welcome-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 63% 37% 54% 46% / 48% 42% 58% 52%;
  box-shadow: var(--shadow-lg);
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}


.cutout-layer-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.cutout-layer-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cutout-layer-panel {
  position: relative;
  width: 100%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 1.5rem;
}
.cutout-shape-one .cutout-layer-panel {
  -webkit-mask-image: radial-gradient(circle at 84% 22%, transparent 0 130px, #000 132px);
  mask-image: radial-gradient(circle at 84% 22%, transparent 0 130px, #000 132px);
}
.cutout-shape-two .cutout-layer-panel {
  -webkit-mask-image: radial-gradient(circle at 12% 78%, transparent 0 160px, #000 163px),
                       radial-gradient(circle at 90% 15%, transparent 0 60px, #000 62px);
  mask-image: radial-gradient(circle at 12% 78%, transparent 0 160px, #000 163px),
              radial-gradient(circle at 90% 15%, transparent 0 60px, #000 62px);
}
.cutout-shape-three .cutout-layer-panel {
  -webkit-mask-image: radial-gradient(circle at 50% 90%, transparent 0 180px, #000 183px);
  mask-image: radial-gradient(circle at 50% 90%, transparent 0 180px, #000 183px);
}
.cutout-layer-content {
  max-width: 1240px;
  margin: 0 auto;
  color: #fbf5ee;
  width: 100%;
}
.cutout-layer-content p:not(.section-eyebrow) { color: color-mix(in oklch, #fbf5ee, transparent 12%); max-width: 62ch; }
.cutout-layer-content h2 { color: #fbf5ee; }
.cutout-layer-content .section-eyebrow { color: var(--color-accent-light); }
.cutout-layer-content-split { display: flex; }
.cutout-layer-content-split > div { max-width: 60ch; }
.cutout-layer-content .button-primary { background: var(--color-accent); color: var(--color-secondary-dark); }
.cutout-layer-content .button-primary:hover { background: var(--color-accent-dark); }


.service-showcase {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.service-showcase-header { max-width: 72ch; margin-bottom: var(--space-xl); }
.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--color-primary), white 82%);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card p { color: var(--color-text-muted); font-size: .96rem; margin: 0; }


.audience-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.audience-header { max-width: 66ch; margin-bottom: var(--space-xl); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.audience-item {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  transition: transform .25s ease, box-shadow .25s ease;
}
.audience-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-item i { font-size: 1.4rem; color: var(--color-primary); margin-bottom: .6rem; display: block; }
.audience-item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.audience-item p { color: var(--color-text-muted); font-size: .92rem; margin: 0; }


.partnership-teaser {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.partnership-teaser-inner {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-surface-alt));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.partnership-teaser-text { max-width: 70ch; }


.page-header-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem var(--space-xl);
}
.page-header-inner { max-width: 80ch; }
.page-header-heading { font-size: clamp(2rem, 3.6vw + 1rem, 3.2rem); }
.page-header-lead { font-size: 1.08rem; color: var(--color-text-muted); }


.differentiator-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.differentiator-header { max-width: 66ch; margin-bottom: var(--space-xl); }
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.differentiator-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.differentiator-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.differentiator-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary-light);
  margin-bottom: .4rem;
}
.differentiator-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.differentiator-card p { color: var(--color-text-muted); font-size: .94rem; margin: 0; }


.closing-cta-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem var(--space-3xl);
  text-align: center;
}
.closing-cta-inner { max-width: 60ch; margin: 0 auto; }
.closing-cta-inner p { color: var(--color-text-muted); margin-bottom: var(--space-md); }


.process-steps-section {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.process-steps-list { display: flex; flex-direction: column; gap: var(--space-lg); position: relative; }
.process-steps-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--color-border);
}
.process-step { display: flex; gap: var(--space-md); position: relative; }
.process-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff9f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.process-step-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.process-step-body p { color: var(--color-text-muted); margin: 0; }


.format-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.format-section-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-xl);
  align-items: center;
}
.format-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }


.partnership-types-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem;
}
.partnership-types-header { max-width: 66ch; margin-bottom: var(--space-xl); }
.partnership-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.partnership-type-card {
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.partnership-type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.partnership-type-card i { font-size: 1.5rem; color: var(--color-primary); margin-bottom: .6rem; display: block; }
.partnership-type-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.partnership-type-card p { color: var(--color-text-muted); font-size: .93rem; margin: 0; }


.contact-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}
.contact-section-inner {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: var(--space-xl);
}
.contact-details { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-detail-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact-detail-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--color-primary), white 82%);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-item h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-detail-item p { margin: 0; color: var(--color-text-muted); }

.inquiry-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.inquiry-form-row-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-sm); }
.inquiry-form-field { display: flex; flex-direction: column; gap: .35rem; }
.inquiry-form-field label { font-size: .85rem; font-weight: 600; color: var(--color-secondary-dark); }
.inquiry-form-field input, .inquiry-form-field textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .75rem .9rem;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--color-background);
  color: var(--color-text);
  resize: vertical;
  transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.inquiry-form-field input:focus, .inquiry-form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-primary), transparent 80%);
}
.inquiry-form-row-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.inquiry-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}
.inquiry-form-checkbox input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.office-gallery-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
}
.office-gallery-header { max-width: 60ch; margin-bottom: var(--space-lg); }
.office-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.office-gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.office-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.office-gallery-item:hover img { transform: scale(1.06); }

.map-section {
  max-width: 1240px;
  margin: 0 auto var(--space-2xl);
  padding: 0 1.5rem;
}
.map-section iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }


.thanks-section {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-3xl) 1.5rem;
  text-align: center;
}
.thanks-icon { font-size: 4rem; color: var(--color-primary); margin-bottom: var(--space-md); }
.thanks-inner p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }


.legal-page-section {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem var(--space-3xl);
}
.legal-page-heading { font-size: clamp(2rem, 3vw + 1rem, 2.8rem); }
.legal-updated { color: var(--color-text-muted); font-size: .9rem; margin-bottom: var(--space-lg); }
.legal-summary-block {
  background: color-mix(in oklch, var(--color-accent), white 78%);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  margin: var(--space-md) 0 var(--space-sm);
  font-size: .95rem;
}
.legal-page-section h2 { margin-top: var(--space-xl); font-size: 1.35rem; }


.page-footer { background: var(--color-secondary); color: #f3ece2; margin-top: auto; }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.5rem var(--space-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-logo { width: 40px; height: 40px; }
.footer-brand p { color: color-mix(in oklch, #f3ece2, transparent 20%); font-size: .9rem; }
.footer-links h3, .footer-contact h3 { color: #f3ece2; font-size: 1rem; margin-bottom: var(--space-sm); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: color-mix(in oklch, #f3ece2, transparent 15%); font-size: .92rem; }
.footer-links a:hover { color: var(--color-accent-light); }
.footer-contact p { color: color-mix(in oklch, #f3ece2, transparent 15%); font-size: .92rem; display: flex; align-items: center; gap: .5rem; }
.footer-contact a { color: color-mix(in oklch, #f3ece2, transparent 10%); }
.footer-contact a:hover { color: var(--color-accent-light); }
.footer-bottom {
  border-top: 1px solid color-mix(in oklch, #f3ece2, transparent 85%);
  text-align: center;
  padding: var(--space-md) 1.5rem;
  font-size: .82rem;
  color: color-mix(in oklch, #f3ece2, transparent 25%);
}

body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }


.floating-contact-widget {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .7rem;
}
.floating-contact-options {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.floating-contact-widget.is-open .floating-contact-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-contact-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: .7rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: .88rem;
  color: var(--color-secondary-dark);
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.floating-contact-option:hover { transform: translateX(-4px); background: color-mix(in oklch, var(--color-primary), white 88%); color: var(--color-primary-dark); }
.floating-contact-option i { color: var(--color-primary); }
.floating-contact-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff9f4;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform .3s ease, background .3s ease;
}
.floating-contact-trigger:hover { transform: scale(1.06); background: var(--color-primary-dark); }
.floating-contact-widget.is-open .floating-contact-trigger { transform: rotate(45deg); }


.cookie-consent {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  width: min(94vw, 560px);
}
.cookie-consent-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-secondary);
  color: #f3ece2;
  border-radius: var(--radius-pill);
  padding: .7rem .7rem .7rem 1.3rem;
  box-shadow: var(--shadow-lg);
  transition: border-radius .4s ease, padding .4s ease;
}
.cookie-consent-pill p { margin: 0; font-size: .85rem; color: color-mix(in oklch, #f3ece2, transparent 10%); }
.cookie-consent-pill p a { color: var(--color-accent-light); }
.cookie-consent-pill-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-consent-pill-actions button {
  border: none;
  border-radius: var(--radius-pill);
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
  min-height: 38px;
}
#cookieAcceptBtn { background: var(--color-accent); color: var(--color-secondary-dark); }
#cookieCustomizeBtn { background: transparent; color: #f3ece2; border: 1px solid color-mix(in oklch, #f3ece2, transparent 60%) !important; }
.cookie-consent-pill-actions button:hover { transform: translateY(-2px); }

.cookie-consent-modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.cookie-consent-modal h3 { margin-bottom: .4rem; }
.cookie-consent-modal p { color: var(--color-text-muted); font-size: .9rem; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-top: 1px solid var(--color-border);
}
.cookie-category-label { display: flex; flex-direction: column; gap: .2rem; }
.cookie-category-label span { font-size: .82rem; color: var(--color-text-muted); }
.cookie-category input[type="checkbox"] { width: 22px; height: 22px; flex-shrink: 0; }
.cookie-consent-modal-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: var(--space-md); }
.cookie-consent-modal-actions button {
  flex: 1;
  min-width: 120px;
  border: none;
  border-radius: var(--radius-pill);
  padding: .7rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: transform .2s ease, background .2s ease;
}
#cookieAcceptAllBtn { background: var(--color-primary); color: #fff9f4; }
#cookieSaveBtn { background: var(--color-accent); color: var(--color-secondary-dark); }
#cookieRejectBtn { background: var(--color-surface-alt); color: var(--color-secondary-dark); border: 1px solid var(--color-border) !important; }
.cookie-consent-modal-actions button:hover { transform: translateY(-2px); }


.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-section-inner { grid-template-columns: 1fr; }
  .format-section-inner { grid-template-columns: 1fr; }
  .mobile-menu-visual { display: block; }
}
@media (max-width: 860px) {
  .navigation-links { display: none; }
  .navigation-toggle { display: flex; }
  .welcome-banner { flex-direction: column; text-align: left; min-height: auto; padding-top: var(--space-xl); }
  .welcome-banner-visual { width: 100%; aspect-ratio: 4/3; }
  .cutout-layer-panel { padding: var(--space-xl) 1.2rem; }
  .cutout-shape-one .cutout-layer-panel,
  .cutout-shape-two .cutout-layer-panel,
  .cutout-shape-three .cutout-layer-panel {
    -webkit-mask-image: radial-gradient(circle at 85% 12%, transparent 0 70px, #000 72px);
    mask-image: radial-gradient(circle at 85% 12%, transparent 0 70px, #000 72px);
  }
  .inquiry-form-row-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group a { text-align: center; }
  .inquiry-form-row-secondary { flex-direction: column; align-items: stretch; }
  .inquiry-form-row-secondary .button-primary { width: 100%; }
  .floating-contact-widget { right: 1rem; bottom: 1rem; }
  .cookie-consent { width: 94vw; }
}