:root {
  --ink: #1a2332;
  --ink-2: #232f42;
  --canvas: #faf8f4;
  --canvas-alt: #f2ede4;
  --clay: #c1663f;
  --clay-dark: #a2502f;
  --gold: #a8834f;
  --slate: #4a5568;
  --slate-light: #6b7280;
  --cream: #f7f3ec;
  --white: #fffdfb;
  --border: rgba(26,35,50,0.1);

  --shadow-sm: 0 1px 2px rgba(26,35,50,0.06), 0 1px 3px rgba(26,35,50,0.08);
  --shadow-md: 0 4px 10px rgba(26,35,50,0.08), 0 10px 20px rgba(26,35,50,0.06);
  --shadow-lg: 0 10px 24px rgba(26,35,50,0.12), 0 20px 48px rgba(26,35,50,0.09);
  --shadow-xl: 0 18px 50px rgba(26,35,50,0.18), 0 30px 70px rgba(26,35,50,0.1);

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

  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--canvas);
  color: var(--slate);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  margin: 0 0 0.6em;
  line-height: 1.2;
  font-weight: 700;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
}
.global-btn--primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.global-btn--primary:hover {
  background: var(--clay-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.global-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(250,248,244,0.5);
  color: var(--white);
}
.global-btn--ghost:hover {
  background: rgba(250,248,244,0.12);
  border-color: var(--white);
}
.global-btn--outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.global-btn--outline:hover {
  background: var(--ink);
  color: var(--white);
}


.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(26,35,50,0.92);
  padding: 1.6rem 0;
  transition: var(--transition);
}
.global-header--scrolled {
  padding: 0.8rem 0;
  background: rgba(26,35,50,0.98);
  box-shadow: var(--shadow-md);
}
.global-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.global-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.global-header__logo-img {
  height: 38px;
  width: auto;
  transition: var(--transition);
}
.global-header--scrolled .global-header__logo-img { height: 28px; }
.global-header__logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition);
}
.global-header--scrolled .global-header__logo-text { font-size: 1.1rem; }
.global-header__nav {
  display: none;
  gap: 2rem;
}
.global-header__link {
  color: rgba(250,248,244,0.82);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
  transition: var(--transition);
}
.global-header__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--clay);
  transition: var(--transition);
}
.global-header__link:hover, .global-header__link--active { color: var(--white); }
.global-header__link:hover::after, .global-header__link--active::after { width: 100%; }
.global-header__cta {
  display: none;
  background: var(--clay);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.global-header__cta:hover { background: var(--clay-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.global-header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.global-header__toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.global-header__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-header__toggle--active span:nth-child(2) { opacity: 0; }
.global-header__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .global-header__nav { display: flex; }
  .global-header__cta { display: inline-flex; }
  .global-header__toggle { display: none; }
}


.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: linear-gradient(160deg, var(--ink) 0%, #2d3a52 100%);
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.global-mobile-menu--active { opacity: 1; visibility: visible; transform: translateY(0); }
.global-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.global-mobile-menu__logo { height: 34px; }
.global-mobile-menu__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  transition: var(--transition);
}
.global-mobile-menu__close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }
.global-mobile-menu__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: center;
  margin-top: 2rem;
}
.global-mobile-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.8rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(250,248,244,0.06);
  border: 1px solid rgba(250,248,244,0.1);
  color: var(--white);
  text-align: center;
  min-height: 110px;
  transition: var(--transition);
}
.global-mobile-menu__item i { font-size: 1.5rem; color: var(--clay); }
.global-mobile-menu__item span { font-weight: 600; font-size: 0.95rem; }
.global-mobile-menu__item:hover {
  background: rgba(193,102,63,0.18);
  border-color: rgba(193,102,63,0.4);
  transform: translateY(-3px);
}


.home-hero {
  position: relative;
  padding-top: 84px;
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 60vh;
}
.home-hero__panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.home-hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s ease;
}
.home-hero__panel:hover .home-hero__image { transform: scale(1.05); }
.home-hero__panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,35,50,0.25), rgba(26,35,50,0.7));
}
.home-hero__panel--after::after {
  background: linear-gradient(180deg, rgba(161,80,47,0.15), rgba(26,35,50,0.72));
}
.home-hero__tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  z-index: 2;
  background: rgba(26,35,50,0.55);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}
.home-hero__tag--after { background: rgba(193,102,63,0.75); }
.home-hero__caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  color: rgba(250,248,244,0.92);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}
.home-hero__content {
  position: relative;
  max-width: 780px;
  margin: -70px auto 0;
  padding: 2.4rem 1.8rem;
  background: rgba(250,248,244,0.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  text-align: center;
}
.home-hero__eyebrow {
  color: var(--clay);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.home-hero__heading {
  font-size: clamp(1.7rem, 4.5vw + 1rem, 2.8rem);
  margin-bottom: 1rem;
}
.home-hero__text {
  color: var(--slate);
  font-size: 1.02rem;
  margin-bottom: 1.6rem;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.home-hero__actions .global-btn--ghost { border-color: var(--ink); color: var(--ink); }
.home-hero__actions .global-btn--ghost:hover { background: var(--ink); color: var(--white); }

@media (min-width: 800px) {
  .home-hero__grid { grid-template-columns: 1fr 1fr; min-height: 640px; }
  .home-hero__content { margin-top: -110px; padding: 3rem 3.2rem; }
}


.home-intro { padding: 5rem 1.5rem 2rem; }
.home-intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.home-intro__lead {
  font-size: clamp(1.15rem, 1vw + 1rem, 1.4rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}


.home-features { padding: 4rem 1.5rem 6rem; }
.home-features__inner { max-width: 1240px; margin: 0 auto; }
.home-features__intro { max-width: 640px; margin-bottom: 3rem; }
.home-features__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.home-features__heading { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem); margin-bottom: 1.5rem; }
.home-features__image {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.home-features__item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.home-features__item:hover { padding-left: 0.6rem; }
.home-features__icon { font-size: 1.5rem; color: var(--clay); margin-bottom: 0.8rem; display: block; }
.home-features__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.home-features__item p { font-size: 0.94rem; color: var(--slate-light); margin: 0; }

@media (min-width: 720px) {
  .home-features__grid { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
}


.home-philosophy { padding: 2rem 1.5rem 6rem; }
.home-philosophy__grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.home-philosophy__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.home-philosophy__image { width: 100%; height: 340px; object-fit: cover; transition: transform 0.8s ease; }
.home-philosophy__image-wrap:hover .home-philosophy__image { transform: scale(1.04); }
.home-philosophy__card {
  background: var(--white);
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
}
.home-philosophy__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.home-philosophy__heading { font-size: clamp(1.5rem, 2.2vw + 1rem, 2.1rem); }

@media (min-width: 900px) {
  .home-philosophy__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 0; }
  .home-philosophy__image { height: 460px; }
  .home-philosophy__card { margin-top: 0; margin-left: -4rem; }
}


.home-stats { background: var(--ink); padding: 5rem 1.5rem; }
.home-stats__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.home-stats__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.home-stats__heading { color: var(--white); margin-bottom: 3rem; }
.home-stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
.home-stats__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.4rem);
  color: var(--white);
  font-weight: 700;
}
.home-stats__item p { color: rgba(250,248,244,0.68); font-size: 0.92rem; margin: 0.3rem 0 0; }

@media (min-width: 720px) { .home-stats__grid { grid-template-columns: repeat(4, 1fr); } }


.home-services-preview { padding: 6rem 1.5rem; }
.home-services-preview__inner { max-width: 1200px; margin: 0 auto; }
.home-services-preview__header { max-width: 640px; margin-bottom: 3rem; }
.home-services-preview__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.home-services-preview__heading { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem); }
.home-services-preview__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.home-services-preview__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.home-services-preview__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(193,102,63,0.3); }
.home-services-preview__icon { font-size: 1.5rem; color: var(--clay); margin-bottom: 1rem; }
.home-services-preview__card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.home-services-preview__card p { font-size: 0.92rem; color: var(--slate-light); margin: 0; }
.home-services-preview__link { display: block; width: fit-content; margin: 3rem auto 0; }

@media (min-width: 720px) { .home-services-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .home-services-preview__grid { grid-template-columns: repeat(4, 1fr); } }


.global-cta {
  padding: 6rem 1.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.global-cta__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.global-cta__heading { color: var(--white); font-size: clamp(1.7rem, 2.6vw + 1rem, 2.4rem); }
.global-cta__text { color: rgba(250,248,244,0.85); margin-bottom: 1.8rem; }


.global-footer { background: var(--ink); color: rgba(250,248,244,0.7); padding: 5rem 1.5rem 2rem; }
.global-footer__top {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,248,244,0.12);
}
.global-footer__logo { height: 34px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.global-footer__col h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 1.2rem; }
.global-footer__col ul li { margin-bottom: 0.8rem; font-size: 0.92rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.global-footer__col ul li i { margin-top: 0.2rem; color: var(--clay); }
.global-footer__col a { transition: var(--transition); }
.global-footer__col a:hover { color: var(--white); }
.global-footer__latest li { display: flex; flex-direction: column; margin-bottom: 1rem; }
.global-footer__latest a { color: rgba(250,248,244,0.85); font-weight: 500; font-size: 0.92rem; }
.global-footer__latest a:hover { color: var(--clay); }
.global-footer__latest span { font-size: 0.78rem; color: rgba(250,248,244,0.45); margin-top: 0.2rem; }
.global-footer__bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  font-size: 0.85rem;
}
.global-footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.global-footer__legal a:hover { color: var(--white); }

@media (min-width: 720px) { .global-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
@media (min-width: 720px) { .global-footer__bottom { flex-direction: row; justify-content: space-between; } }


.philosophy-hero { padding: 160px 1.5rem 4rem; background: var(--canvas-alt); }
.philosophy-hero__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy-hero__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.philosophy-hero__heading { font-size: clamp(2rem, 3.5vw + 1rem, 3rem); }
.philosophy-hero__text { font-size: 1.05rem; }

.philosophy-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  align-items: center;
}
.philosophy-block__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.philosophy-block__img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.8s ease; }
.philosophy-block__image:hover .philosophy-block__img { transform: scale(1.05); }
.philosophy-block__number { color: var(--clay); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.philosophy-block__content h2 { font-size: clamp(1.4rem, 2vw + 1rem, 1.9rem); margin-top: 0.4rem; }

@media (min-width: 880px) {
  .philosophy-block { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .philosophy-block--reverse .philosophy-block__image { order: 2; }
  .philosophy-block--reverse .philosophy-block__content { order: 1; }
  .philosophy-block__img { height: 400px; }
}

.philosophy-quote {
  padding: 7rem 1.5rem;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}
.philosophy-quote__card {
  max-width: 720px;
  text-align: center;
  background: rgba(250,248,244,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250,248,244,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}
.philosophy-quote__text { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2vw + 1rem, 1.8rem); color: var(--white); font-weight: 600; line-height: 1.5; }
.philosophy-quote__label { color: var(--clay); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; }


.services-hero { padding: 160px 1.5rem 4rem; background: var(--canvas-alt); }
.services-hero__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.services-hero__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.services-hero__heading { font-size: clamp(2rem, 3.2vw + 1rem, 2.8rem); }

.services-grid { padding: 5rem 1.5rem; }
.services-grid__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.services-grid__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.services-grid__card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.services-grid__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.services-grid__image { border-radius: var(--radius-md); width: 100%; height: 220px; object-fit: cover; margin: 1.2rem 0; }

@media (min-width: 880px) { .services-grid__inner { grid-template-columns: 1fr 1fr; } }

.services-process { background: var(--canvas-alt); padding: 5rem 1.5rem; }
.services-process__inner { max-width: 1100px; margin: 0 auto; }
.services-process__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.services-process__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.services-process__steps { display: grid; grid-template-columns: 1fr; gap: 1.8rem; }
.services-process__step {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.services-process__step:hover { box-shadow: var(--shadow-md); }
.services-process__num {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 720px) { .services-process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-process__steps { grid-template-columns: repeat(4, 1fr); } }

.services-fit { padding: 5rem 1.5rem 6rem; }
.services-fit__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.services-fit__col { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; }
.services-fit__col h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.15rem; margin-bottom: 1.2rem; }
.services-fit__col h3 i { color: var(--clay); }
.services-fit__col ul li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.services-fit__col ul li:last-child { border-bottom: none; }
@media (min-width: 880px) { .services-fit__grid { grid-template-columns: 1fr 1fr; } }


.faq-hero { padding: 160px 1.5rem 4rem; background: var(--canvas-alt); }
.faq-hero__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.faq-hero__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.faq-hero__heading { font-size: clamp(1.9rem, 3vw + 1rem, 2.6rem); }

.faq-list { padding: 4rem 1.5rem 6rem; }
.faq-list__inner { max-width: 820px; margin: 0 auto; }
.faq-list__category { font-size: 1.3rem; margin: 2.5rem 0 1rem; }
.faq-list__category:first-child { margin-top: 0; }
.faq-list__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.faq-list__item:hover { box-shadow: var(--shadow-sm); }
.faq-list__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 2rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-list__item summary::-webkit-details-marker { display: none; }
.faq-list__item summary::after {
  content: '\2b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f067';
  position: absolute;
  right: 0;
  color: var(--clay);
  transition: var(--transition);
}
.faq-list__item[open] summary::after { content: '\f068'; }
.faq-list__item p { padding-top: 0.8rem; margin: 0; color: var(--slate-light); font-size: 0.95rem; }


.contact-hero { padding: 160px 1.5rem 4rem; background: var(--canvas-alt); }
.contact-hero__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-hero__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.contact-hero__heading { font-size: clamp(1.9rem, 3vw + 1rem, 2.6rem); }

.contact-form-section { padding: 4rem 1.5rem 6rem; }
.contact-form-section__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-form-section__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-form-section__field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form-section__field label { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.contact-form-section__field input,
.contact-form-section__field select,
.contact-form-section__field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--canvas);
  color: var(--ink);
  transition: var(--transition);
  min-height: 44px;
}
.contact-form-section__field textarea { min-height: 130px; resize: vertical; }
.contact-form-section__field input:focus,
.contact-form-section__field select:focus,
.contact-form-section__field textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(193,102,63,0.12);
}
.contact-form-section__checkbox { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; }
.contact-form-section__checkbox input { margin-top: 0.3rem; width: 18px; height: 18px; accent-color: var(--clay); }
.contact-form-section__checkbox a { color: var(--clay); font-weight: 600; }
.contact-form-section__submit { align-self: flex-start; }
.contact-form-section__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form-section__info-card {
  background: var(--ink);
  color: rgba(250,248,244,0.85);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-section__info-card h3 { color: var(--white); }
.contact-form-section__info-card ul li { display: flex; gap: 0.6rem; margin-bottom: 0.9rem; font-size: 0.92rem; }
.contact-form-section__info-card ul li i { color: var(--clay); margin-top: 0.2rem; }
.contact-form-section__info-card a:hover { color: var(--clay); }

@media (min-width: 900px) { .contact-form-section__grid { grid-template-columns: 1.5fr 1fr; } }

.contact-office { padding: 2rem 1.5rem 6rem; }
.contact-office__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.contact-office__image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-office__image { width: 100%; height: 340px; object-fit: cover; transition: transform 0.8s ease; }
.contact-office__image-wrap:hover .contact-office__image { transform: scale(1.05); }
.contact-office__eyebrow { color: var(--clay); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
@media (min-width: 880px) { .contact-office__grid { grid-template-columns: 1fr 1fr; } }

.contact-map { padding: 0 1.5rem 6rem; }
.contact-map__inner { max-width: 1100px; margin: 0 auto; }
.contact-map__frame { width: 100%; height: 380px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }


.legal-header-section { padding: 160px 1.5rem 3rem; background: var(--canvas-alt); }
.legal-header-section__inner { max-width: 820px; margin: 0 auto; }
.legal-header-section__updated { color: var(--slate-light); font-size: 0.9rem; }
.legal-body { padding: 3rem 1.5rem 6rem; }
.legal-body__inner { max-width: 820px; margin: 0 auto; }
.legal-body__inner h2 { font-size: 1.3rem; margin-top: 2.4rem; }
.legal-body__table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.legal-body__table th, .legal-body__table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.legal-body__table th { background: var(--ink); color: var(--white); font-weight: 600; }
.legal-body__table tr:last-child td { border-bottom: none; }
.legal-body__dl { margin: 1.5rem 0; }
.legal-body__dl dt { font-weight: 700; color: var(--ink); margin-top: 1.2rem; font-family: 'Playfair Display', serif; }
.legal-body__dl dd { margin: 0.3rem 0 0; color: var(--slate); }


.thanks-section { padding: 200px 1.5rem 8rem; display: flex; justify-content: center; }
.thanks-section__card {
  max-width: 560px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.thanks-section__icon { font-size: 3rem; color: var(--clay); margin-bottom: 1.2rem; }
.thanks-section__redirect { font-weight: 600; color: var(--ink); }
#countdown { color: var(--clay); font-family: 'Playfair Display', serif; font-size: 1.2rem; }


.global-cookie-consent {
  position: fixed;
  bottom: 1.2rem; right: 1.2rem;
  z-index: 1000;
  max-width: 360px;
  width: calc(100% - 2.4rem);
}
.global-cookie-consent__card {
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(26,35,50,0.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s ease;
}
.global-cookie-consent--visible .global-cookie-consent__card { transform: translateY(0); opacity: 1; }
.global-cookie-consent__icon { font-size: 1.6rem; color: var(--clay); margin-bottom: 0.8rem; }
.global-cookie-consent__text { font-size: 0.88rem; color: var(--slate); margin-bottom: 1.2rem; }
.global-cookie-consent__actions { display: flex; flex-direction: column; gap: 0.6rem; }
.global-cookie-consent__btn {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.86rem;
  transition: var(--transition);
  min-height: 44px;
  text-align: center;
}
.global-cookie-consent__btn--primary { background: var(--clay); color: var(--white); }
.global-cookie-consent__btn--primary:hover { background: var(--clay-dark); }
.global-cookie-consent__btn--secondary { background: var(--cream); color: var(--ink); }
.global-cookie-consent__btn--secondary:hover { background: var(--canvas-alt); }
.global-cookie-consent__btn--link { background: transparent; color: var(--slate-light); text-decoration: underline; }
.global-cookie-consent__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.global-cookie-consent__panel--open { max-height: 500px; margin-top: 1rem; }
.global-cookie-consent__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.global-cookie-consent__row p { font-size: 0.78rem; margin: 0.2rem 0 0; color: var(--slate-light); }
.global-cookie-consent__row input { width: 20px; height: 20px; accent-color: var(--clay); flex-shrink: 0; }
.global-cookie-consent__panel .global-cookie-consent__btn { width: 100%; margin-top: 1rem; }

@media (max-width: 480px) {
  .global-cookie-consent { right: 0.7rem; bottom: 0.7rem; }
}