/* ================================================
   Grandis Care Services — design system
   Aesthetic: refined editorial warmth
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* color */
  --cream: #F7F2EA;
  --cream-dark: #EDE5D6;
  --cream-deeper: #E2D6BE;
  --forest: #0E3940;
  --forest-mid: #2D5560;
  --forest-soft: #5C7680;
  --clay: #E5572D;
  --clay-deep: #B83E1D;
  --clay-soft: #F4C0A8;
  --sage: #1FA8B6;
  --sage-deep: #147A85;
  --sand: #D4C3A1;
  --ink: #0F0F0E;
  --white: #FFFFFF;

  /* type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  /* spacing */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-w: 1280px;

  /* motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--forest);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle grain texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  font-variation-settings: "opsz" 100, "SOFT" 50;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay);
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--forest-mid);
  font-weight: 400;
  line-height: 1.55;
  max-width: 56ch;
}

em, .italic { font-style: italic; font-variation-settings: "opsz" 144; }

/* ============ LAYOUT ============ */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; z-index: 2; }

.divider {
  height: 1px;
  background: var(--forest);
  opacity: 0.12;
  width: 100%;
  margin: 0;
}

/* ============ NAVIGATION ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 57, 64, 0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease);
}

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

@media (max-width: 880px) {
  .logo img { height: 64px; }
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-mid);
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clay);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--clay);
}

.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--clay);
  color: var(--cream);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  font-size: 1.4rem;
}

/* ============ NAV PHONE NUMBERS ============ */
.nav-phones {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(14, 57, 64, 0.15);
}

.nav-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.nav-phone:hover { transform: translateY(-1px); }

.nav-phone .region {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.nav-phone .number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clay);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}

.nav-phone:hover .number { color: var(--clay-deep); }

@media (max-width: 1100px) {
  .nav-phones { display: none; }
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter) 3rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(14, 57, 64, 0.08);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.3rem; font-family: var(--font-display); }
  .nav-cta { margin-top: 1rem; }
  .menu-toggle { display: block; }
}

/* ============ HERO PHONE CALLOUT ============ */
.hero-phones {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--cream-dark);
  border-radius: 18px;
  border-left: 4px solid var(--clay);
  max-width: 580px;
}

.hero-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
  flex: 1;
  min-width: 200px;
}

.hero-phone:hover { transform: translateY(-2px); }

.hero-phone .region {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hero-phone .number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--clay);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}

.hero-phone:hover .number { color: var(--clay-deep); }

.hero-phones-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.9rem;
  width: 100%;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clay);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(229, 87, 45, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============ HERO (home) ============ */

.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.8rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero h1 .em-clay { color: var(--clay); font-style: italic; }
.hero h1 .em-sage { color: var(--sage-deep); font-style: italic; }

.hero p { margin-bottom: 2rem; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: 220px 220px 12px 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(14, 57, 64, 0.25);
}

.hero-visual svg,
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px -15px rgba(14, 57, 64, 0.25);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  border: 1px solid rgba(14, 57, 64, 0.06);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
}

.hero-badge span { color: var(--forest-soft); font-size: 0.82rem; }

/* ============ SECTIONS ============ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.03em;
}
.section-head h2 em { color: var(--clay); }

/* ============ SERVICES GRID ============ */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream-dark);
  padding: 2.2rem 1.9rem 2rem;
  border-radius: 18px;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 57, 64, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--cream-deeper);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--cream);
  transition: background 0.3s var(--ease);
}

.service-card:nth-child(3n+2) .service-icon { background: var(--sage-deep); }
.service-card:nth-child(3n+3) .service-icon { background: var(--forest); }

.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--forest-mid);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card .link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.02em;
}

.service-card .link::after {
  content: ' →';
  transition: margin 0.3s var(--ease);
}
.service-card:hover .link::after { margin-left: 4px; }

/* ============ VALUES / WHY US ============ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}

.split-visual {
  aspect-ratio: 5/6;
  background: var(--sage);
  border-radius: 12px 12px 200px 200px;
  position: relative;
  overflow: hidden;
}

.split-visual svg,
.split-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.split-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.4rem;
}

.value-list {
  list-style: none;
  margin-top: 2rem;
}

.value-list li {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(14, 57, 64, 0.12);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.value-list li:last-child { border-bottom: 1px solid rgba(14, 57, 64, 0.12); }

.value-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clay);
  font-size: 1.4rem;
  font-weight: 400;
}

.value-list h4 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

.value-list p {
  color: var(--forest-mid);
  font-size: 0.95rem;
}

/* ============ TESTIMONIAL ============ */

.testimonial-section {
  background: var(--forest);
  color: var(--cream);
}

.testimonial-section h2,
.testimonial-section h3 { color: var(--cream); }

.testimonial {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 6rem;
  color: var(--clay);
  line-height: 0.5;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
  color: var(--cream);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.quote em { color: var(--clay-soft); }

.quote-attr {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  font-size: 0.92rem;
}

.quote-attr strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
}

.quote-attr span { color: var(--sand); }

/* ============ CTA BAND ============ */

.cta-band {
  background: var(--clay);
  color: var(--cream);
}

.cta-band .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 760px) {
  .cta-band .wrap { grid-template-columns: 1fr; gap: 2rem; }
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.cta-band h2 em { color: var(--cream-dark); }

.cta-band .btn-ghost {
  border-color: var(--cream);
  color: var(--cream);
}
.cta-band .btn-ghost:hover {
  background: var(--cream);
  color: var(--clay);
}

/* ============ FOOTER ============ */

footer {
  background: var(--forest);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
}

footer .wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 760px) {
  footer .wrap { grid-template-columns: 1fr 1fr; }
}

.foot-brand h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144;
}

.foot-brand p {
  color: var(--sand);
  font-size: 0.92rem;
  max-width: 28ch;
}

footer h5 {
  color: var(--cream);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.7rem; }
footer ul a {
  color: var(--sand);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
footer ul a:hover { color: var(--clay-soft); }

.foot-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--sand);
}

/* ============ PAGE HERO (interior pages) ============ */

.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  border-bottom: 1px solid rgba(14, 57, 64, 0.08);
}

.page-hero .eyebrow { margin-bottom: 1.2rem; }

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.035em;
  max-width: 16ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.page-hero h1 em { color: var(--clay); }

.page-hero p { margin-top: 1.5rem; max-width: 56ch; }

/* ============ ABOUT / STORY ============ */

.story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; }
}

.story-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--forest-mid);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  max-width: 56ch;
}

.story-text p strong {
  color: var(--forest);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 57, 64, 0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--forest-mid);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ============ TEAM ============ */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card { text-align: left; }

.team-photo {
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: 12px 12px 140px 140px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  position: relative;
}

.team-photo svg,
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
}

.team-card .role {
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ DETAILED SERVICES ============ */

.service-row {
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: 2.5rem;
  padding: 2.8rem 0;
  border-top: 1px solid rgba(14, 57, 64, 0.12);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid rgba(14, 57, 64, 0.12); }

@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
}

.service-row .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--clay);
}

.service-row h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.service-row .meta {
  color: var(--sage-deep);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.service-row .desc {
  color: var(--forest-mid);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.service-row .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--cream-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--forest-mid);
  font-weight: 500;
}

/* ============ TESTIMONIALS PAGE ============ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--cream-dark);
  padding: 2.2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 57, 64, 0.05);
}

.testimonial-card .stars {
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.testimonial-card .body {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  font-weight: 300;
  flex: 1;
}

.testimonial-card .attr {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid rgba(14, 57, 64, 0.1);
  padding-top: 1.2rem;
}

.attr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial-card:nth-child(3n+2) .attr-avatar { background: var(--sage-deep); }
.testimonial-card:nth-child(3n+3) .attr-avatar { background: var(--forest); }

.attr-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.attr-info span { font-size: 0.82rem; color: var(--forest-soft); }

/* ============ FAQ ============ */

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-top: 1px solid rgba(14, 57, 64, 0.15);
}
.faq-item:last-child { border-bottom: 1px solid rgba(14, 57, 64, 0.15); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}

.faq-q:hover { color: var(--clay); }

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq-a-inner {
  padding: 0 0 1.8rem;
  color: var(--forest-mid);
  font-size: 1rem;
  max-width: 64ch;
  line-height: 1.6;
}

/* ============ CAREERS ============ */

.openings {
  display: grid;
  gap: 1rem;
}

.opening {
  background: var(--cream-dark);
  border-radius: 14px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

@media (max-width: 880px) {
  .opening {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.opening:hover {
  transform: translateX(4px);
  background: var(--cream-deeper);
}

.opening h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.opening-meta {
  font-size: 0.85rem;
  color: var(--forest-mid);
}

.opening-meta strong {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 0.25rem;
}

.opening .btn { padding: 0.7rem 1.3rem; font-size: 0.88rem; }

.perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.perk {
  padding: 1.6rem;
  background: var(--cream-dark);
  border-radius: 14px;
  border: 1px solid rgba(14, 57, 64, 0.05);
}

.perk h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.perk p {
  color: var(--forest-mid);
  font-size: 0.92rem;
}

/* ============ CONTACT ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 2rem 0 0.4rem;
}

.contact-info p {
  color: var(--forest-mid);
  font-size: 1.02rem;
}

.contact-info a {
  color: var(--clay);
  font-weight: 500;
}

.contact-info a:hover { text-decoration: underline; }

form {
  background: var(--cream-dark);
  padding: 2.4rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 57, 64, 0.05);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--forest);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(14, 57, 64, 0.15);
  border-radius: 10px;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--forest);
  transition: border 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(229, 87, 45, 0.15);
}

.field textarea { resize: vertical; min-height: 130px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============ ANIMATIONS ============ */

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.rise { animation: rise 1s var(--ease-out) both; }
.rise-d1 { animation: rise 1s 0.1s var(--ease-out) both; }
.rise-d2 { animation: rise 1s 0.25s var(--ease-out) both; }
.rise-d3 { animation: rise 1s 0.4s var(--ease-out) both; }
.rise-d4 { animation: rise 1s 0.55s var(--ease-out) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
