/* ===== Theme Variables ===== */
:root {
  /* Jourwell brand palette — see Brand Guidelines */
  --cream: #F9EAD7;        /* Jourwell Cream */
  --cream-soft: #F0EBE3;   /* Soft Linen */
  --espresso: #482720;     /* Jourwell Deep Brown */
  --espresso-soft: #7B4A2D;/* Jourwell Mid Brown */
  --orange: #C07830;       /* Jourwell Amber */
  --orange-dark: #A3661F;  /* Amber, darkened for hover */
  --text-dark: #482720;    /* Deep Brown */
  --text-muted: #6B5A4E;
  --white: #FFFFFF;
  --slate: #7A8C8D;        /* Dusk Slate */
  --greige: #B5A89A;       /* Warm Greige */
  --linen: #F0EBE3;        /* Soft Linen */
  --sage: #4A7C59;         /* Sage Green */
  --sage-soft: #8FAF96;    /* Muted Sage */
  --radius: 14px;
  --transition: 0.4s cubic-bezier(.25,.8,.25,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Primary typeface per brand guidelines is Proxima Sera — Georgia is a serif
   placeholder until a licensed Proxima Sera font file is available. */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 14px;
}

.italic-accent { font-style: italic; color: var(--orange); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(192,120,48,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn-outline.light {
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline.light:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* ===== Header / Nav ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
header.scrolled, header.solid {
  background: rgba(72,39,32,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo span { color: var(--orange); font-style: italic; }
.logo img { height: 34px; width: auto; display: block; }
.footer-top .logo img { height: 38px; }
.nav-links {
  display: flex;
  gap: 34px;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-dropdown-trigger {
  color: var(--cream);
  cursor: default;
}
.nav-dropdown-trigger.active { color: var(--orange); }

.nav-dropdown { position: relative; }
.nav-dropdown > a, .nav-dropdown > .nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown .caret { font-size: 0.7em; transition: transform var(--transition); }
.nav-dropdown:hover .caret, .nav-dropdown:focus-within .caret { transform: translateY(1px) rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(72,39,32,0.97);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 250px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.8rem;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.02em;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--orange); }
.nav-dropdown-menu a.active { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--cream); display: block; }

/* ===== Page Banner (sub-pages) ===== */
.page-banner {
  position: relative;
  background: var(--espresso);
  padding: 170px 0 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 320px;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(72,39,32,0.8);
  z-index: 1;
}
.page-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-banner h1 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--espresso);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(72,39,32,0.95) 20%, rgba(72,39,32,0.55) 60%, rgba(72,39,32,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.05rem;
  color: #E8DDCF;
  margin: 0 auto 34px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(247,239,228,0.35);
  transition: background var(--transition), width var(--transition);
}
.hero-dots span.active { background: var(--orange); width: 22px; border-radius: 5px; }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.12s; }
.reveal-delay-2.in-view { transition-delay: 0.24s; }
.reveal-delay-3.in-view { transition-delay: 0.36s; }

/* ===== Intro Section ===== */
.intro {
  padding: 120px 0 80px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}
.intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 26px;
}
.intro p { margin-bottom: 18px; color: var(--text-muted); font-size: 1.02rem; }
.floating-frame { position: relative; }
.intro-slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px rgba(72,39,32,0.18);
  animation: floatY 6s ease-in-out infinite;
}
.float-shadow {
  position: absolute;
  left: 12%; right: 12%;
  bottom: -20px;
  height: 26px;
  background: radial-gradient(ellipse at center, rgba(72,39,32,0.35) 0%, rgba(72,39,32,0) 72%);
  border-radius: 50%;
  animation: floatShadow 6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatShadow {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(0.82); opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-slideshow, .float-shadow { animation: none; }
}
.intro-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06) translateX(24px);
  transition: opacity 1.1s ease, transform 1.4s ease;
}
.intro-slideshow .slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 1;
}
.intro-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slide-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background var(--transition), width var(--transition);
}
.slide-dots span.active {
  background: var(--orange);
  width: 22px;
  border-radius: 5px;
}

/* ===== Why We Exist ===== */
.why { padding: 140px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.why h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); margin-bottom: 24px; }
.why p { color: var(--text-muted); margin-bottom: 16px; }
.why-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(72,39,32,0.16);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-step {
  border-top: 2px solid var(--orange);
  padding-top: 22px;
}
.process-step .eyebrow {
  display: block;
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 12px;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ===== Values ===== */
.values { background: var(--espresso); color: var(--cream); padding: 120px 0; }
.values-head { max-width: 560px; margin: 0 auto 60px; text-align: center; }
.values-head h2 { color: var(--cream); font-size: clamp(2.1rem, 3.6vw, 3rem); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(72,39,32,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(72,39,32,0.13); }
.value-card h4 { margin-bottom: 10px; font-size: 1.1rem; color: var(--text-dark); }
.value-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ===== Our Offer ===== */
.offer { padding: 100px 0; }
.offer-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.offer-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(72,39,32,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: translateY(-10px); box-shadow: 0 24px 44px rgba(72,39,32,0.16); }
.offer-card .img-wrap { overflow: hidden; height: 180px; }
.offer-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.offer-card:hover img { transform: scale(1.08); }
.offer-card .body { padding: 22px 22px 26px; }
.offer-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.offer-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== Services Hub ===== */
.services-hub { padding: 100px 0; }
.services-hub-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.services-hub-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(72,39,32,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-tile:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(72,39,32,0.14); }
.service-tile-img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: -32px -28px 22px;
}
.service-tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-tile:hover .service-tile-img img { transform: scale(1.06); }
.service-tile h4 { font-size: 1.1rem; margin-bottom: 10px; }
.service-tile p.lede { color: var(--orange); font-size: 0.9rem; font-style: italic; margin-bottom: 12px; }
.service-tile p.desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }
.service-tile .btn { align-self: flex-start; margin-top: auto; }

/* ===== Services Showcase (Homepage) ===== */
.services-showcase {
  background: var(--espresso);
  color: var(--cream);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.services-showcase::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,120,48,0.16) 0%, rgba(192,120,48,0) 70%);
  pointer-events: none;
}
.services-showcase-head { max-width: 620px; margin: 0 auto 70px; text-align: center; position: relative; }
.services-showcase-head h2 { color: var(--cream); font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.services-showcase-head p { color: #C9BCAC; margin-top: 16px; }
.services-showcase .section-label { color: var(--orange); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: stretch;
  position: relative;
}
.showcase-list { display: flex; flex-direction: column; }
.showcase-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 4px;
  border-top: 1px solid rgba(249,234,215,0.14);
  text-decoration: none;
  color: inherit;
  transition: padding var(--transition), background var(--transition);
}
.showcase-list a.showcase-item:last-child { border-bottom: 1px solid rgba(249,234,215,0.14); }
.showcase-num {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.05rem;
  color: rgba(249,234,215,0.38);
  min-width: 36px;
  transition: color var(--transition);
}
.showcase-item-text { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.showcase-item-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.35rem;
  color: var(--cream);
  transition: color var(--transition);
}
.showcase-item-lede {
  font-size: 0.88rem;
  color: #C9BCAC;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--transition), max-height var(--transition);
}
.showcase-arrow {
  font-size: 1.3rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.showcase-item:hover,
.showcase-item:focus-visible,
.showcase-item.active {
  padding-left: 18px;
  background: rgba(249,234,215,0.045);
}
.showcase-item:hover .showcase-num,
.showcase-item:focus-visible .showcase-num,
.showcase-item.active .showcase-num { color: var(--orange); }
.showcase-item:hover .showcase-item-title,
.showcase-item:focus-visible .showcase-item-title,
.showcase-item.active .showcase-item-title { color: var(--orange); }
.showcase-item:hover .showcase-item-lede,
.showcase-item:focus-visible .showcase-item-lede,
.showcase-item.active .showcase-item-lede { opacity: 1; max-height: 40px; }
.showcase-item:hover .showcase-arrow,
.showcase-item:focus-visible .showcase-arrow,
.showcase-item.active .showcase-arrow { opacity: 1; transform: translateX(0); }
.showcase-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  min-height: 480px;
}
.showcase-preview-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease, transform 1.4s ease;
}
.showcase-preview-img.active { opacity: 1; transform: scale(1); z-index: 1; }
.showcase-preview-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,16,13,0.45);
  pointer-events: none;
  z-index: 2;
}
.showcase-preview-label {
  position: absolute;
  left: 28px; bottom: 26px; right: 28px;
  z-index: 3;
  color: var(--cream);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.3rem;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .showcase-preview-img { transition: opacity 0.3s ease; }
}
@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-preview { min-height: 340px; order: -1; }
}
@media (max-width: 620px) {
  .showcase-item-title { font-size: 1.1rem; }
  .showcase-item { gap: 14px; }
  .showcase-num { min-width: 26px; font-size: 0.9rem; }
}

/* ===== Service Detail Page ===== */
.service-detail { padding: 90px 0 110px; }
.service-detail .container { max-width: 1080px; }
.service-detail .lede {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 26px;
  line-height: 1.4;
}
.service-detail p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }
.service-detail .service-cta { margin-top: 40px; display: flex; gap: 18px; flex-wrap: wrap; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.service-detail-image-wrap { position: relative; }
.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(72,39,32,0.18);
  aspect-ratio: 4 / 5;
  animation: floatY 6s ease-in-out infinite;
}
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) {
  .service-detail-image, .service-detail-image-wrap .float-shadow { animation: none; }
}
.other-services { border-top: 1px solid rgba(72,39,32,0.1); margin-top: 60px; padding-top: 40px; }
.other-services h5 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 18px;
}
.other-services-list { display: flex; flex-wrap: wrap; gap: 12px; }
.other-services-list a {
  border: 1px solid rgba(72,39,32,0.15);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: border-color var(--transition), color var(--transition);
}
.other-services-list a:hover { border-color: var(--orange); color: var(--orange); }

/* ===== Family Culture ===== */
.culture { background: var(--cream-soft); padding: 110px 0; }
.culture-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}
.culture-head h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); }
.culture-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(72,39,32,0.16);
}
.culture-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.culture-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.culture-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(72,39,32,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.culture-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(72,39,32,0.13); }
.culture-item-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(192,120,48,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.culture-item-icon svg { width: 22px; height: 22px; }
.culture-item h4 { font-size: 1.02rem; margin-bottom: 10px; color: var(--text-dark); }
.culture-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== Things To Do / Gallery ===== */
.things { padding: 100px 0; }
.things-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.things-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}
.gallery img {
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s ease, filter var(--transition);
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; box-shadow: 0 14px 30px rgba(72,39,32,0.1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }

/* ===== Brand Story ===== */
.story { padding: 130px 0 140px; }
.story-head { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.story-head h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); }
.story-timeline { max-width: 640px; margin: 0 auto; }
.story-step {
  text-align: center;
  padding: 42px 0;
  border-top: 1px solid rgba(72,39,32,0.12);
}
.story-timeline .story-step:first-child { border-top: none; padding-top: 0; }
.story-step h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.story-step p { font-size: 0.98rem; color: var(--text-muted); margin: 0 auto; max-width: 480px; }
.story-cta { text-align: center; margin-top: 70px; }

/* ===== Testimonial ===== */
.testimonial {
  background: var(--espresso);
  color: var(--cream);
  padding: 110px 0;
  margin-bottom: 40px;
  text-align: center;
}
.testimonial blockquote {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  max-width: 780px;
  margin: 0 auto 34px;
  font-style: italic;
  line-height: 1.5;
}
.testimonial .author {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testimonial .author span { color: #C9BAA9; text-transform: none; display: block; font-size: 0.8rem; margin-top: 4px; }

/* ===== Promise ===== */
.promise { padding: 100px 0; text-align: center; }
.promise h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); max-width: 700px; margin: 0 auto 24px; }
.promise p { max-width: 640px; margin: 0 auto; color: var(--text-muted); }

/* ===== Careers ===== */
.careers { padding: 40px 0 10px; }
.careers-head { max-width: 700px; margin-bottom: 34px; }
.careers-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.careers-head p { color: var(--text-muted); }

.job-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; }
.job-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(72,39,32,0.06);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.job-list-item:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 36px rgba(72,39,32,0.12);
  border-color: var(--orange);
}
.job-list-item h4 { font-size: 1.15rem; margin-bottom: 8px; }
.job-list-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.job-list-meta .tag {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  background: rgba(192,120,48,0.1);
  padding: 5px 12px;
  border-radius: 999px;
}
.job-list-arrow { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; transition: transform var(--transition); }
.job-list-item:hover .job-list-arrow { transform: translateX(6px); }

.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(72,39,32,0.06);
  margin-bottom: 22px;
}
.job-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.job-card h4 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin: 34px 0 14px;
}
.job-card h4:first-of-type { margin-top: 0; }
.job-card p { color: var(--text-muted); margin-bottom: 14px; }

.job-meta {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.job-meta td {
  padding: 12px 14px;
  border: 1px solid rgba(72,39,32,0.1);
  vertical-align: top;
}
.job-meta td:first-child {
  background: var(--cream-soft);
  font-weight: 700;
  width: 200px;
  color: var(--text-dark);
}
.job-meta td:last-child { color: var(--text-muted); }

.heart-bar {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0 6px;
}
.heart-bar > div {
  flex: 1;
  color: var(--white);
  text-align: center;
  padding: 14px 6px 8px;
}
.heart-bar .letter { font-size: 1.4rem; font-weight: 700; font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif; }
.heart-bar .label {
  display: block;
  font-size: 0.68rem;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.02em;
  margin-top: 2px;
  opacity: 0.9;
}
.heart-bar .h { background: var(--espresso); }
.heart-bar .e { background: var(--espresso-soft); }
.heart-bar .a { background: var(--orange); }
.heart-bar .r { background: var(--greige); color: var(--espresso); }
.heart-bar .t { background: var(--sage); }

.job-card ol {
  padding-left: 22px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.job-card ol li { margin-bottom: 10px; }
.job-demands {
  padding-left: 22px;
  color: var(--text-muted);
  list-style: disc;
  margin-bottom: 14px;
}
.job-demands li { margin-bottom: 10px; }

.job-card details {
  border-top: 1px solid rgba(72,39,32,0.1);
  padding-top: 18px;
  margin-top: 18px;
}
.job-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.job-card details[open] summary { margin-bottom: 16px; }
.job-card details h4:first-of-type { margin-top: 24px; }

.policy-note {
  background: var(--cream-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-top: 30px;
}
.policy-note p { margin: 0 0 10px; color: var(--text-dark); font-size: 0.92rem; }
.policy-note p:last-child { margin-bottom: 0; }

/* Person Specification table */
.person-spec-wrap { overflow-x: auto; margin-top: 10px; }
.person-spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}
.person-spec th {
  background: var(--espresso-soft);
  color: var(--cream);
  text-align: left;
  padding: 12px 16px;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.person-spec td {
  padding: 14px 16px;
  border: 1px solid rgba(72,39,32,0.1);
  vertical-align: top;
  color: var(--text-muted);
}
.person-spec tr:nth-child(odd) td:first-child { background: var(--cream-soft); font-weight: 700; color: var(--text-dark); }
.person-spec ul { list-style: disc; padding-left: 18px; }
.person-spec li { margin-bottom: 6px; }

/* ===== Application Form ===== */
.apply-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(72,39,32,0.06);
}
.apply-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.apply-card > p.form-note { margin-bottom: 30px; }

.form-section {
  border-top: 1px solid rgba(72,39,32,0.1);
  padding-top: 22px;
  margin-top: 22px;
}
.form-section:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.form-section h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-note { color: var(--text-muted); font-size: 0.86rem; font-style: italic; margin-bottom: 16px; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.field label .opt { font-weight: 400; color: var(--text-muted); text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(72,39,32,0.15);
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(192,120,48,0.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input[type="file"] {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.86rem;
}
.field input[type="file"]::file-selector-button {
  padding: 7px 14px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.field input[type="file"]::file-selector-button:hover { background: var(--orange-dark); }

.choice-group { margin-bottom: 16px; }
.choice-group > span.q {
  display: block;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.choice-row { display: flex; gap: 24px; flex-wrap: wrap; }
.choice-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}
.choice-row input[type="radio"], .choice-row input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--orange);
}

.subgroup {
  background: var(--cream-soft);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}
.subgroup h5 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--cream-soft);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.consent-row input { margin-top: 4px; accent-color: var(--orange); }
.consent-row label { font-size: 0.88rem; color: var(--text-muted); }

.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  display: none;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(74,124,89,0.12); color: var(--sage); border: 1px solid rgba(74,124,89,0.3); }
.form-status.error { background: rgba(181,72,107,0.1); color: #7a2f45; border: 1px solid rgba(181,72,107,0.3); }

/* ===== Policy Document ===== */
.policy-doc { padding: 90px 0 110px; }
.policy-doc .container { max-width: 820px; }
.policy-doc .lede { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; }
.policy-doc h2 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  border-bottom: 1px solid rgba(72,39,32,0.12);
  padding-bottom: 10px;
  margin: 44px 0 18px;
}
.policy-doc h2:first-of-type { margin-top: 0; }
.policy-doc p { color: var(--text-muted); margin-bottom: 16px; }
.policy-doc ul, .policy-doc ol { padding-left: 22px; color: var(--text-muted); margin-bottom: 16px; }
.policy-doc ul { list-style: disc; }
.policy-doc li { margin-bottom: 10px; }
.policy-doc .back-link { margin-top: 20px; }

/* ===== FAQ ===== */
.faq-page { padding: 90px 0 30px; }
.faq-page .container { max-width: 1100px; }
.faq-page .faq-intro { max-width: 640px; margin-left: auto; margin-right: auto; }
.faq-intro { text-align: center; margin-bottom: 40px; }
.faq-intro .lede {
  font-style: italic;
  color: var(--orange);
  font-size: 1.3rem;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.faq-intro p.desc { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.faq-search { position: relative; max-width: 460px; margin: 0 auto 40px; }
.faq-search svg {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}
.faq-search input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border-radius: 999px;
  border: 1px solid rgba(72,39,32,0.16);
  background: var(--white);
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-search input::placeholder { color: var(--text-muted); }
.faq-search input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(192,120,48,0.12); }

.faq-empty { display: none; text-align: center; color: var(--text-muted); font-style: italic; margin: 10px 0 50px; }
.faq-empty.show { display: block; }

.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: start; }

.faq-tabs { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 110px; }
.faq-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(72,39,32,0.14);
  background: var(--white);
  cursor: pointer;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  text-align: left;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}
.faq-tab svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--orange); transition: color var(--transition); }
.faq-tab:hover { border-color: var(--orange); box-shadow: 0 8px 20px rgba(72,39,32,0.08); }
.faq-tab.active { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.faq-tab.active svg { color: var(--orange); }

.faq-category { scroll-margin-top: 110px; }
.faq-category.faq-hidden { display: none; }
.faq-category h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: 26px;
}
.faq-category h2 svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--orange); }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 6px 18px rgba(72,39,32,0.06);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: box-shadow var(--transition);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover { box-shadow: 0 14px 30px rgba(72,39,32,0.1); }
.faq-item.faq-hidden { display: none; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.02rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(192,120,48,0.4);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item:hover summary { color: var(--orange); }
.faq-item[open] summary::after { transform: rotate(135deg); background: var(--orange); color: var(--white); }
.faq-item[open] summary { margin-bottom: 12px; }
.faq-item p { color: var(--text-muted); margin: 0; }
.faq-item ul { color: var(--text-muted); padding-left: 20px; margin-top: 6px; }
.faq-item ul li { margin-bottom: 6px; }

.faq-closing { text-align: center; margin-top: 20px; }
.faq-closing p { color: var(--text-muted); max-width: 500px; margin: 0 auto 24px; }

/* ===== Contact Page ===== */
.contact-hero { padding: 130px 0 100px; overflow: hidden; }
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.contact-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  margin-bottom: 22px;
}
.contact-hero .lede { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 10px; }
.contact-hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(72,39,32,0.18);
}
.contact-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-hero-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-hero-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4A9B5E;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(74,155,94,0.18);
}
.contact-hero-badge span { font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.contact-hero-badge small { display: block; font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }

.contact-channels-section { background: var(--espresso); padding: 90px 0 100px; }
.contact-channels-head { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.contact-channels-head h2 { color: var(--cream); font-size: clamp(2rem, 3.4vw, 2.7rem); }
.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-channel {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-channel:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.contact-channel-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(192,120,48,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition), color var(--transition);
}
.contact-channel:hover .contact-channel-icon { background: var(--orange); color: var(--white); }
.contact-channel-icon svg { width: 21px; height: 21px; }
.contact-channel h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-dark); }
.contact-channel p { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 10px; }
.contact-channel .go {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
}

.contact-main { padding: 110px 0; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: start;
}
.contact-main h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.contact-main-intro p { color: var(--text-muted); margin-bottom: 22px; }
.contact-hours { border-top: 1px solid rgba(72,39,32,0.12); padding-top: 22px; margin-top: 6px; }
.contact-hours h5 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 14px;
}
.contact-hours-row { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--text-muted); padding: 8px 0; border-bottom: 1px dashed rgba(72,39,32,0.1); }
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row span:first-child { color: var(--text-dark); font-weight: 600; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(72,39,32,0.1);
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }

.contact-map-section { padding: 0 0 110px; }
.contact-map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(72,39,32,0.14);
  aspect-ratio: 21 / 8;
}
.contact-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 980px) {
  .contact-hero-grid, .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero-grid { flex-direction: column-reverse; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
  .contact-map-frame { aspect-ratio: 4 / 3; }
}
@media (max-width: 620px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
footer {
  background: var(--espresso);
  color: #C9BAA9;
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-top .logo { margin-bottom: 14px; }
.footer-top p { max-width: 360px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(247,239,228,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== Scroll to top ===== */
.to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 900;
  font-size: 1.1rem;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--orange-dark); }

/* ===== Apply Modal ===== */
body.modal-open { overflow: hidden; }
.apply-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(72,39,32,0.75);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  overflow-y: auto;
}
.apply-modal-overlay.show { display: flex; }
.apply-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  padding: 40px;
  position: relative;
}
.apply-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  transition: background var(--transition);
}
.apply-modal-close:hover { background: var(--greige); }
@media (max-width: 620px) {
  .apply-modal-overlay { padding: 20px 12px; }
  .apply-modal { padding: 28px 20px; }
}

/* ===== WhatsApp Chat Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 98px; right: 30px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(0,0,0,0.32); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(72,39,32,0.97);
    flex-direction: column;
    padding: 24px 32px;
    gap: 18px;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-tabs { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-tab { width: auto; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
  }
  .nav-dropdown-menu a { padding: 8px 0; font-size: 0.76rem; opacity: 0.85; }
  .nav-dropdown .caret { display: none; }
  .intro-grid, .why-grid, .contact-grid, .service-detail-grid, .culture-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .service-detail-image { aspect-ratio: 16 / 9; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-list { grid-template-columns: repeat(2, 1fr); }
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .things-head { flex-direction: column; align-items: flex-start; }
  .field-grid, .field-grid.cols-3 { grid-template-columns: 1fr; }
  .job-card, .apply-card { padding: 28px 22px; }
  .job-meta td:first-child { width: 140px; }
  .heart-bar { flex-wrap: wrap; }
  .heart-bar > div { flex: 1 1 20%; }
}
@media (max-width: 620px) {
  .offer-grid, .gallery, .services-hub-grid { grid-template-columns: 1fr; }
  .values-grid, .culture-list, .process-row { grid-template-columns: 1fr; }
  .footer-links { gap: 30px; }
  .job-meta, .job-meta tbody, .job-meta tr, .job-meta td { display: block; width: 100%; }
  .job-meta td:first-child { width: auto; border-bottom: none; }
  .job-meta tr { margin-bottom: 4px; }
  .job-list-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .job-list-arrow { display: none; }
}
