/* ============================================
   FROVIXILXOL — Main Stylesheet
   Type-Driven Design System
   ============================================ */


:root {
  --c-ink: #1a1a2e;
  --c-cream: #f5f2ed;
  --c-accent: #c8a96e;
  --c-accent2: #2d6a4f;
  --c-light: #faf8f4;
  --c-muted: #6b6b7b;
  --c-border: rgba(26,26,46,.1);
  --c-ink-soft: #2e2e45;
  --nav-h: 80px;

  --shadow-sm: 0 1px 3px rgba(26,26,46,.06), 0 1px 2px rgba(26,26,46,.04);
  --shadow-md: 0 4px 16px rgba(26,26,46,.08), 0 2px 6px rgba(26,26,46,.05);
  --shadow-lg: 0 12px 40px rgba(26,26,46,.12), 0 4px 12px rgba(26,26,46,.07);
  --shadow-xl: 0 24px 60px rgba(26,26,46,.16), 0 8px 24px rgba(26,26,46,.10);

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

  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}


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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }


.u-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.u-section-pad {
  padding: var(--space-xl) 0;
}

.u-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-sm);
}

.u-mt-2 { margin-top: var(--space-md); display: inline-block; }
.u-hidden { display: none; }
.u-text-center { text-align: center; }


.c-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}

.c-nav.is-scrolled {
  background: rgba(245,242,237,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,46,.08);
  box-shadow: 0 4px 24px rgba(26,26,46,.06);
}

.c-nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.c-nav__links a {
  text-decoration: none;
  color: var(--c-ink);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .3s ease;
  position: relative;
}

.c-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.c-nav__links a:hover { color: var(--c-accent); }
.c-nav__links a:hover::after { transform: scaleX(1); }

.c-nav__logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  color: var(--c-ink);
  transition: color .3s ease;
}
.c-nav__logo:hover { color: var(--c-accent); }

.c-nav__cta {
  background: var(--c-ink) !important;
  color: var(--c-cream) !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em;
  transition: background .3s ease, transform .2s ease !important;
}
.c-nav__cta::after { display: none; }
.c-nav__cta:hover { background: var(--c-accent) !important; color: var(--c-cream) !important; transform: translateY(-1px); }

.c-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.c-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-ink);
  transition: all .3s ease;
}


.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(135deg, var(--c-ink) 0%, #2e2e5e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.c-mobile-menu.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--c-cream);
  font-size: 1.75rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s ease, transform .3s ease;
}
.c-mobile-menu__close:hover { color: var(--c-accent); transform: rotate(90deg); }

.c-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.c-mobile-menu__nav a {
  color: var(--c-cream);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .3s ease;
  position: relative;
}
.c-mobile-menu__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.c-mobile-menu__nav a:hover { color: var(--c-accent); }
.c-mobile-menu__nav a:hover::after { transform: scaleX(1); }


.c-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.c-btn--primary {
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-ink);
  box-shadow: var(--shadow-md);
}
.c-btn--primary:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.c-btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.c-btn--ghost:hover {
  background: var(--c-ink);
  color: var(--c-cream);
  transform: translateY(-2px);
}

.c-btn--outline {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(245,242,237,.5);
}
.c-btn--outline:hover {
  background: rgba(245,242,237,.1);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--c-accent2);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .02em;
  transition: gap .3s ease, color .3s ease;
}
.c-link-arrow:hover { gap: .9rem; color: var(--c-accent); }


.s-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-h) + 5rem) var(--space-md) 5rem;
  position: relative;
  overflow: hidden;
}

.s-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/organized-wardrobe-before-after.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.s-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,242,237,.94) 0%, rgba(245,242,237,.78) 55%, rgba(245,242,237,.35) 100%);
  z-index: 1;
}

.s-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.s-hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}

.s-hero__display {
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--c-ink);
  margin-bottom: 2rem;
}

.s-hero__display--accent {
  color: var(--c-accent);
  font-style: italic;
}

.s-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.s-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.s-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--c-muted);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.s-hero__scroll-hint i {
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


.s-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.s-intro__text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.s-intro__text h2 em {
  font-style: italic;
  color: var(--c-accent);
}

.s-intro__text p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.s-intro__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.s-intro__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.s-intro__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.s-intro__badge-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.s-intro__badge-text {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
}


.s-pillars__header {
  margin-bottom: 3rem;
}

.s-pillars__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.s-pillars__bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.c-pillar {
  background: var(--c-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.c-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.c-pillar--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.c-pillar--accent {
  background: linear-gradient(135deg, var(--c-accent2) 0%, #1a4a35 100%);
  color: var(--c-cream);
  border-color: transparent;
}

.c-pillar--accent .c-pillar__text { color: rgba(245,242,237,.8); }
.c-pillar--accent .c-pillar__icon { color: var(--c-accent); }

.c-pillar__icon {
  font-size: 1.8rem;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}

.c-pillar__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}

.c-pillar__text {
  color: var(--c-muted);
  font-size: .95rem;
  line-height: 1.7;
  flex: 1;
}

.c-pillar__img {
  margin-top: 2rem;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}


.s-process {
  background: var(--c-ink);
  color: var(--c-cream);
}

.s-process__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.s-process__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.s-process__left .u-label { color: var(--c-accent); }
.s-process__left p { color: rgba(245,242,237,.7); line-height: 1.8; }

.s-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(245,242,237,.08);
  transition: background .3s ease;
}

.c-step:last-child { border-bottom: none; }

.c-step__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  min-width: 3rem;
  letter-spacing: -.04em;
}

.c-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--c-cream);
}

.c-step__text {
  font-size: .9rem;
  color: rgba(245,242,237,.6);
  line-height: 1.7;
}


.s-gallery__header { margin-bottom: 2.5rem; }

.s-gallery__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.s-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1.2rem;
}

.s-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.s-gallery__item--tall { grid-row: span 2; }
.s-gallery__item--wide { grid-column: span 2; }

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

.s-gallery__item:hover img { transform: scale(1.05); }

.s-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.s-gallery__item:hover .s-gallery__overlay { opacity: 1; }

.s-gallery__overlay span {
  color: var(--c-cream);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}


.s-faq {
  background: var(--c-light);
}

.s-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.s-faq__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.s-faq__sub {
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.s-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-faq-item {
  border-bottom: 1px solid var(--c-border);
}

.c-faq-item:first-child { border-top: 1px solid var(--c-border); }

.c-faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-ink);
  transition: color .3s ease;
  min-height: 44px;
}

.c-faq-item__q:hover { color: var(--c-accent); }

.c-faq-item__icon {
  font-size: .85rem;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform .35s ease;
}

.c-faq-item.is-active .c-faq-item__icon { transform: rotate(45deg); }

.c-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.c-faq-item.is-active .c-faq-item__a { max-height: 400px; padding-bottom: 1.4rem; }

.c-faq-item__a p {
  color: var(--c-muted);
  line-height: 1.8;
  font-size: .95rem;
}


.s-cta-strip {
  background: linear-gradient(135deg, var(--c-ink) 0%, #2e2e5e 100%);
  color: var(--c-cream);
}

.s-cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.s-cta-strip__heading {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.s-cta-strip__text p {
  color: rgba(245,242,237,.7);
}

.s-cta-strip__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}


.s-page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 3rem;
}

.s-page-hero__inner {
  max-width: 780px;
}

.s-page-hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.s-page-hero__title em {
  font-style: italic;
  color: var(--c-accent);
}

.s-page-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 600px;
}


.s-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.s-story__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.s-story__heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.s-story__text-col p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}


.s-values__header { margin-bottom: 3rem; }

.s-values__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.s-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.c-value-card {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.c-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.c-value-card__num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -.04em;
  margin-bottom: .8rem;
}

.c-value-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.c-value-card p {
  color: var(--c-muted);
  font-size: .9rem;
  line-height: 1.7;
}


.s-approach {
  background: var(--c-ink);
  color: var(--c-cream);
}

.s-approach__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.s-approach__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.s-approach__text .u-label { color: var(--c-accent); }
.s-approach__text p { color: rgba(245,242,237,.7); line-height: 1.8; margin-bottom: 1rem; }

.s-approach__visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: .85;
}


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

.c-service-block {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.c-service-block__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.c-service-block__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -.04em;
  line-height: 1;
}

.c-service-block__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
}

.c-service-block__tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent2);
  background: rgba(45,106,79,.1);
  padding: .25rem .7rem;
  border-radius: 20px;
}

.c-service-block__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.c-service-block__text p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.c-service-block__subheading {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-top: 1.5rem;
  margin-bottom: .8rem;
}

.c-service-block__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.c-service-block__features li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.c-service-block__features li i {
  color: var(--c-accent2);
  font-size: .8rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.c-service-block__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}


.s-blog__featured { margin-bottom: 3rem; }

.c-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow .3s ease;
}
.c-blog-featured:hover { box-shadow: var(--shadow-xl); }

.c-blog-featured__img {
  overflow: hidden;
}

.c-blog-featured__img img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .5s ease;
}
.c-blog-featured:hover .c-blog-featured__img img { transform: scale(1.04); }

.c-blog-featured__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-blog-featured__title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.c-blog-featured__excerpt {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.c-blog-featured__meta {
  display: flex;
  gap: 1.5rem;
  font-size: .8rem;
  color: var(--c-muted);
}
.c-blog-featured__meta i { margin-right: .3rem; color: var(--c-accent); }

.s-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.c-blog-card {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
}
.c-blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.c-blog-card__img {
  overflow: hidden;
  height: 200px;
}
.c-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.c-blog-card:hover .c-blog-card__img img { transform: scale(1.06); }

.c-blog-card__body { padding: 1.5rem; }

.c-blog-card__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent2);
  background: rgba(45,106,79,.1);
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .8rem;
}

.c-blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: .8rem;
}

.c-blog-card__excerpt {
  color: var(--c-muted);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.c-blog-card__meta {
  font-size: .75rem;
  color: var(--c-muted);
}
.c-blog-card__meta i { color: var(--c-accent); margin-right: .3rem; }


.s-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.s-contact__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}

.c-contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.c-contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--c-accent);
  color: var(--c-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.c-contact-item__body h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .3rem;
}

.c-contact-item__body p, .c-contact-item__body a {
  color: var(--c-ink);
  font-size: .95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color .3s ease;
}
.c-contact-item__body a:hover { color: var(--c-accent); }


.c-contact-form {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.c-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.c-contact-form__field label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--c-ink);
}

.c-contact-form__field input,
.c-contact-form__field textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .3s ease, box-shadow .3s ease;
  outline: none;
  width: 100%;
  min-height: 44px;
}

.c-contact-form__field input:focus,
.c-contact-form__field textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}

.c-contact-form__field textarea { resize: vertical; min-height: 100px; }

.c-contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  cursor: pointer;
}

.c-contact-form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-accent2);
}

.c-contact-form__privacy span {
  font-size: .82rem;
  color: var(--c-muted);
  line-height: 1.5;
}

.c-contact-form__privacy a {
  color: var(--c-accent2);
  text-decoration: underline;
}


.s-booking {
  background: var(--c-light);
}

.s-booking__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.s-booking__heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}

.s-booking__text p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.s-booking__steps {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.5rem;
}

.s-booking__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: var(--c-ink);
}

.s-booking__step-num {
  width: 32px;
  height: 32px;
  background: var(--c-accent);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.s-booking__cta-card {
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}

.s-booking__cta-icon {
  font-size: 2.5rem;
  color: var(--c-accent);
}

.s-booking__cta-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.s-booking__cta-card p {
  color: rgba(245,242,237,.7);
  font-size: .9rem;
  line-height: 1.6;
}


.s-map__header { margin-bottom: 2rem; }

.s-map__heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.s-map__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.s-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 4rem);
}

.s-thanks__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.s-thanks__icon {
  font-size: 4rem;
  color: var(--c-accent2);
  margin-bottom: 1.5rem;
}

.s-thanks__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.s-thanks__lead {
  font-size: 1.1rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.s-thanks__next {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
  box-shadow: var(--shadow-md);
}

.s-thanks__next-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.s-thanks__steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.s-thanks__step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.s-thanks__step-num {
  width: 36px;
  height: 36px;
  background: var(--c-accent);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.s-thanks__step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.s-thanks__step p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.s-thanks__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.s-legal {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
}

.s-legal__inner { max-width: 800px; }

.s-legal__header { margin-bottom: 3rem; }

.s-legal__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.s-legal__date {
  font-size: .85rem;
  color: var(--c-muted);
}

.s-legal__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--c-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.s-legal__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: .8rem;
  color: var(--c-ink);
}

.s-legal__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: .6rem;
  color: var(--c-accent2);
}

.s-legal__content p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: .8rem;
}

.s-legal__list {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.s-legal__list li { margin-bottom: .4rem; }

.s-legal__box {
  background: var(--c-light);
  border-left: 4px solid var(--c-accent);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2rem;
}

.s-legal__box p { margin: 0; color: var(--c-ink); }

.s-legal__cookies-table {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.s-legal__cookie-cat {
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.s-legal__cookie-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: .6rem 0;
  border-top: 1px solid var(--c-border);
  margin-top: .8rem;
  align-items: baseline;
}

.s-legal__cookie-name {
  font-family: monospace;
  font-size: .85rem;
  color: var(--c-accent2);
  font-weight: 600;
}

.s-legal__cookie-desc {
  font-size: .875rem;
  color: var(--c-muted);
}

code {
  font-family: monospace;
  background: rgba(26,26,46,.06);
  padding: .15rem .4rem;
  border-radius: 3px;
  font-size: .85em;
  color: var(--c-accent2);
}


.c-footer {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 5rem 0 0;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,242,237,.1);
}

.c-footer__logo {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--c-cream);
  margin-bottom: 1rem;
  transition: color .3s ease;
}
.c-footer__logo:hover { color: var(--c-accent); }

.c-footer__tagline {
  color: rgba(245,242,237,.55);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.c-footer__address {
  font-size: .875rem;
  color: rgba(245,242,237,.55);
  line-height: 1.9;
}

.c-footer__address a {
  color: rgba(245,242,237,.55);
  text-decoration: none;
  transition: color .3s ease;
}
.c-footer__address a:hover { color: var(--c-accent); }

.c-footer__nav-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}

.c-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.c-footer__nav a {
  color: rgba(245,242,237,.6);
  font-size: .9rem;
  text-decoration: none;
  transition: color .3s ease;
}
.c-footer__nav a:hover { color: var(--c-cream); }

.c-footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.c-footer__bottom p {
  font-size: .8rem;
  color: rgba(245,242,237,.35);
  letter-spacing: .04em;
}


.c-cookie-card {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  max-width: 300px;
  box-shadow: var(--shadow-xl);
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}

.c-cookie-card.is-visible {
  transform: translateX(0);
}

.c-cookie-card__head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}

.c-cookie-card__icon {
  font-size: 1.1rem;
  color: var(--c-accent);
}

.c-cookie-card__title {
  font-size: .9rem;
  font-weight: 700;
}

.c-cookie-card__text {
  font-size: .78rem;
  color: rgba(245,242,237,.65);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.c-cookie-card__text a {
  color: var(--c-accent);
  text-decoration: underline;
}

.c-cookie-card__btns {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.c-cookie-card__btn {
  flex: 1;
  padding: .55rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  min-height: 44px;
}

.c-cookie-card__btn--accept {
  background: var(--c-accent);
  color: var(--c-cream);
}
.c-cookie-card__btn--accept:hover { background: #b8944e; }

.c-cookie-card__btn--reject {
  background: rgba(245,242,237,.12);
  color: var(--c-cream);
}
.c-cookie-card__btn--reject:hover { background: rgba(245,242,237,.2); }

.c-cookie-card__btn--settings {
  flex: 0 0 100%;
  background: none;
  color: rgba(245,242,237,.5);
  font-size: .72rem;
  text-align: center;
  padding: .3rem;
  min-height: 32px;
}
.c-cookie-card__btn--settings:hover { color: var(--c-cream); }


.c-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,26,46,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}

.c-cookie-modal.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-cookie-modal__inner {
  background: var(--c-cream);
  color: var(--c-ink);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.c-cookie-modal__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.c-cookie-modal__desc {
  font-size: .875rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.c-cookie-modal__cats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.c-cookie-modal__cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}

.c-cookie-modal__cat-text h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.c-cookie-modal__cat-text p {
  font-size: .78rem;
  color: var(--c-muted);
  line-height: 1.5;
}

.c-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.c-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.c-cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.2);
  border-radius: 12px;
  cursor: pointer;
  transition: background .3s ease;
}

.c-cookie-toggle__track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .3s ease;
}

.c-cookie-toggle input:checked + .c-cookie-toggle__track {
  background: var(--c-accent2);
}

.c-cookie-toggle input:checked + .c-cookie-toggle__track::before {
  transform: translateX(20px);
}

.c-cookie-toggle input:disabled + .c-cookie-toggle__track {
  background: var(--c-accent2);
  opacity: .6;
  cursor: not-allowed;
}

.c-cookie-modal__actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.c-cookie-modal__btn {
  flex: 1;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
  min-height: 44px;
}

.c-cookie-modal__btn--save {
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-ink);
}
.c-cookie-modal__btn--save:hover { background: var(--c-accent); border-color: var(--c-accent); }

.c-cookie-modal__btn--all {
  background: var(--c-accent2);
  color: var(--c-cream);
  border-color: var(--c-accent2);
}
.c-cookie-modal__btn--all:hover { opacity: .85; }


@media (max-width: 1024px) {
  .s-intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .s-pillars__bento { grid-template-columns: 1fr 1fr; }
  .c-pillar--large { grid-column: span 2; grid-row: auto; }
  .s-process__inner { grid-template-columns: 1fr; gap: 3rem; }
  .s-story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .s-values__grid { grid-template-columns: repeat(2, 1fr); }
  .s-approach__inner { grid-template-columns: 1fr; gap: 3rem; }
  .s-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .s-gallery__item--tall { grid-row: auto; }
  .s-gallery__item--wide { grid-column: auto; }
  .c-service-block__body { grid-template-columns: 1fr; }
  .c-blog-featured { grid-template-columns: 1fr; }
  .c-blog-featured__img img { min-height: 240px; }
  .s-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .s-contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .s-booking__inner { grid-template-columns: 1fr; gap: 3rem; }
  .c-footer__grid { grid-template-columns: 1fr 1fr; }
  .s-faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

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

  .c-nav__links { display: none; }
  .c-nav__hamburger { display: flex; }

  .s-hero { padding-left: 1.25rem; padding-right: 1.25rem; }

  .s-pillars__bento { grid-template-columns: 1fr; }
  .c-pillar--large { grid-column: auto; }

  .s-gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }

  .s-values__grid { grid-template-columns: 1fr; }

  .s-blog__grid { grid-template-columns: 1fr; }

  .c-contact-form__row { grid-template-columns: 1fr; }

  .s-cta-strip__inner { flex-direction: column; text-align: center; }
  .s-cta-strip__actions { justify-content: center; }

  .c-footer__grid { grid-template-columns: 1fr; }

  .s-legal__cookie-row { grid-template-columns: 1fr; }

  .c-cookie-card { max-width: calc(100vw - 3rem); }

  .u-section-pad { padding: 3rem 0; }

  .s-intro__img { height: 300px; }
  .s-story__img { height: 280px; }
  .s-approach__visual img { height: 280px; }
}

@media (max-width: 480px) {
  .s-hero__actions { flex-direction: column; }
  .s-hero__actions .c-btn { text-align: center; justify-content: center; }
  .s-thanks__actions { flex-direction: column; }
  .c-cookie-modal__actions { flex-direction: column; }
}