/* ============================================
   HORIZON SALES & SOLUTIONS — Design System
   Aesthetic: Coastal-Professional Elevated
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --- Custom Properties --- */
:root {
  --burnt-orange: #C05E2A;
  --burnt-orange-light: #d4783f;
  --burnt-orange-dark: #a34e1f;
  --sage: #8A9E7E;
  --sage-light: #a3b598;
  --sage-dark: #6e8263;
  --lavender: #B5A8C8;
  --lavender-light: #cdc3da;
  --warm-brown: #7B5E43;
  --warm-brown-light: #9a7a5c;
  --cream: #F8F3EC;
  --cream-dark: #efe7db;
  --dark: #2C2016;
  --dark-light: #3d2f21;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --nav-height: 80px;
  --section-pad: clamp(60px, 10vw, 120px);
  --container: min(1200px, 90vw);
  --radius: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(44, 32, 22, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 32, 22, 0.1);
  --shadow-lg: 0 16px 50px rgba(44, 32, 22, 0.14);
  --shadow-lift: 0 20px 60px rgba(44, 32, 22, 0.18);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  width: var(--container);
  margin: 0 auto;
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary {
  background: var(--burnt-orange);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--burnt-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: var(--burnt-orange);
  padding: 8px 0;
  border-radius: 0;
  font-weight: 600;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--burnt-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.btn-ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn .arrow {
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(248, 243, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44, 32, 22, 0.08);
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo .logo-img {
  height: 90px;
  width: auto;
}

.footer .nav-logo .logo-img {
  filter: brightness(0) invert(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--burnt-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover { color: var(--burnt-orange); }
.nav-links a.active { color: var(--burnt-orange); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--burnt-orange) !important;
  color: var(--cream) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--burnt-orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
.hamburger span:nth-child(3) { width: 85%; }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); width: 100%; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu a:hover { color: var(--burnt-orange); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Golden-hour gradient — warm, atmospheric */
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(192, 94, 42, 0.12), transparent),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(138, 158, 126, 0.1), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(181, 168, 200, 0.08), transparent),
    linear-gradient(175deg, var(--cream) 0%, #f3ebe0 35%, #efe2d3 65%, #f0e8dc 100%);
}

/* Grain texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* Decorative golden orbs */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(192, 94, 42, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 20s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  padding: 40px 0;
}

.hero-content h1 {
  color: var(--dark);
  margin-bottom: 24px;
  font-weight: 700;
  font-style: italic;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--burnt-orange);
  position: relative;
}

.hero-content h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burnt-orange);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--warm-brown);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero horizon line SVG */
.hero-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
}

.hero-horizon svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animated entrance */
.hero-content .reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-reveal 1s var(--ease-out) forwards;
}

.hero-content .reveal-hero:nth-child(1) { animation-delay: 0.2s; }
.hero-content .reveal-hero:nth-child(2) { animation-delay: 0.45s; }
.hero-content .reveal-hero:nth-child(3) { animation-delay: 0.65s; }

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   VALUES STRIP
   ============================================ */
.values-strip {
  padding: 50px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.values-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192, 94, 42, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(138, 158, 126, 0.06), transparent 60%);
}

.values-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.value-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.value-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(248, 243, 236, 0.1);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--burnt-orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h4 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.value-item p {
  color: rgba(248, 243, 236, 0.55);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-teaser-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-quote {
  position: relative;
  padding-left: 32px;
}

.about-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--burnt-orange), var(--sage));
  border-radius: 4px;
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
}

.about-text .section-label { margin-bottom: 16px; }

.about-text p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(175deg, var(--cream-dark) 0%, var(--cream) 100%);
  position: relative;
}

.services-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}

.services-header h2 {
  margin-bottom: 16px;
}

.services-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--warm-brown);
  font-size: 1.05rem;
}

.services-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(44, 32, 22, 0.06);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burnt-orange), var(--burnt-orange-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(192, 94, 42, 0.1), rgba(192, 94, 42, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--burnt-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--warm-brown);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   TEAM PREVIEW
   ============================================ */
.team-preview {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.team-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}

.team-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
}

.team-card {
  background: var(--cream);
  border: 1px solid rgba(44, 32, 22, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 3/3.2;
  background: linear-gradient(145deg, var(--cream-dark), #e8ddd0);
  position: relative;
  overflow: hidden;
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(192, 94, 42, 0.08), transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(138, 158, 126, 0.06), transparent 50%);
}

/* Silhouette placeholder */
.team-photo .silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 75%;
  opacity: 0.08;
}

.team-photo .silhouette svg {
  width: 100%;
  height: 100%;
  fill: var(--dark);
}

.team-info {
  padding: 28px 28px 32px;
}

.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.team-info .role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burnt-orange);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.team-info p {
  font-size: 0.92rem;
  color: var(--warm-brown);
  line-height: 1.75;
}

.team-cta {
  width: var(--container);
  margin: 48px auto 0;
  text-align: center;
}

/* ============================================
   CULTURE CALLOUT
   ============================================ */
.culture-callout {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.culture-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(192, 94, 42, 0.1), transparent),
    radial-gradient(ellipse 50% 70% at 80% 60%, rgba(138, 158, 126, 0.06), transparent);
}

/* Grain */
.culture-callout::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.culture-content {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.culture-content h2 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 16px;
}

.culture-content h2 span {
  color: var(--burnt-orange-light);
}

.culture-sub {
  color: rgba(248, 243, 236, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(248, 243, 236, 0.04);
  border: 1px solid rgba(248, 243, 236, 0.08);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--burnt-orange-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(248, 243, 236, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--cream);
  border-top: 1px solid rgba(44, 32, 22, 0.06);
}

.contact-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-info-group {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(192, 94, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--burnt-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}

.contact-item a {
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--burnt-orange); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  background: var(--dark);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 94, 42, 0.3), transparent);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(248, 243, 236, 0.08);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .nav-logo {
  color: var(--cream);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(248, 243, 236, 0.45);
  line-height: 1.5;
}

/* Center column: nav + social */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(248, 243, 236, 0.6);
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--burnt-orange-light); }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(248, 243, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  stroke: rgba(248, 243, 236, 0.8);
  fill: none;
  stroke-width: 1.5;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--burnt-orange);
  background: rgba(192, 94, 42, 0.1);
}

.footer-social a:hover svg { stroke: var(--burnt-orange-light); }

.footer-social a svg .ig-dot { fill: rgba(248, 243, 236, 0.8); stroke: none; }
.footer-social a:hover svg .ig-dot { fill: var(--burnt-orange-light); }

/* Right column: contact info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  justify-self: end;
}

.footer-contact a {
  font-size: 0.88rem;
  color: rgba(248, 243, 236, 0.55);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a:hover { color: var(--burnt-orange-light); }

.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: rgba(248, 243, 236, 0.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(248, 243, 236, 0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(248, 243, 236, 0.35);
  transition: color 0.3s;
}

.footer-legal a:hover { color: rgba(248, 243, 236, 0.7); }

/* ============================================
   CULTURE PHOTO GRID
   ============================================ */
.culture-photos {
  padding: 0;
  overflow: hidden;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.photo-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease-out);
}

.photo-grid-item:hover img {
  transform: scale(1.06);
}

.photo-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44, 32, 22, 0.15));
  pointer-events: none;
}

/* Photo Collage (3-col asymmetric) */
.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  width: var(--container);
  margin: 0 auto;
}

.collage-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.collage-item:hover img {
  transform: scale(1.04);
}

.collage-item.tall {
  grid-row: span 2;
}

.collage-item.wide {
  grid-column: span 2;
}

/* Culture Banner (full-width photo with overlay) */
.culture-banner {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.culture-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 32, 22, 0.6), rgba(44, 32, 22, 0.2));
}

.culture-banner-text {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.culture-banner-text h3 {
  color: var(--cream);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
}

.culture-banner-text p {
  color: rgba(248, 243, 236, 0.7);
  margin-top: 8px;
  font-size: 0.95rem;
}

/* Team photos with real images */
.team-photo img,
.team-full-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Story/careers visual with real photo */
.story-visual img,
.careers-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.careers-visual.has-photo {
  background: none;
}

.careers-visual.has-photo .big-quote {
  display: none;
}

/* Service detail visuals with photos */
.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.service-detail-visual.has-photo {
  background: none !important;
}

.service-detail-visual.has-photo::before {
  display: none;
}

.service-detail-visual.has-photo .detail-icon {
  display: none;
}

/* Photo strip (horizontal scrolling row) */
.photo-strip {
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.photo-strip-item {
  flex: 0 0 25%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease-out);
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
  }

  .collage-item.tall {
    grid-row: span 1;
  }

  .culture-banner {
    height: 280px;
  }

  .photo-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .photo-strip::-webkit-scrollbar {
    display: none;
  }

  .photo-strip-item {
    flex: 0 0 75%;
  }
}

@media (max-width: 480px) {
  .photo-strip-item {
    flex: 0 0 85%;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   PAGE HEROES (inner pages)
   ============================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(192, 94, 42, 0.1), transparent),
    radial-gradient(ellipse 60% 70% at 30% 60%, rgba(138, 158, 126, 0.08), transparent),
    linear-gradient(175deg, var(--cream) 0%, #f0e5d8 50%, var(--cream) 100%);
}

.page-hero .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.page-hero-content {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-content h1 {
  margin-bottom: 20px;
  font-style: italic;
}

.page-hero-content p {
  font-size: 1.15rem;
  color: var(--warm-brown);
  line-height: 1.8;
  max-width: 560px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section {
  padding: var(--section-pad) 0;
}

.story-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.story-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--cream-dark), #e3d7c9);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(192, 94, 42, 0.1), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(138, 158, 126, 0.08), transparent 50%);
}

.story-visual .decorative-line {
  position: absolute;
  bottom: 20%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--burnt-orange), transparent);
  opacity: 0.3;
}

.story-text h2 { margin-bottom: 24px; }

.story-text p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Values Expanded */
.values-expanded {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.values-expanded::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(192, 94, 42, 0.08), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(138, 158, 126, 0.06), transparent 50%);
}

.values-expanded-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.values-expanded-header h2 { color: var(--cream); }

.values-expanded-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.value-expanded-card {
  padding: 40px 36px;
  border-radius: var(--radius);
  background: rgba(248, 243, 236, 0.04);
  border: 1px solid rgba(248, 243, 236, 0.08);
  transition: all 0.4s var(--ease-out);
}

.value-expanded-card:hover {
  background: rgba(248, 243, 236, 0.07);
  border-color: rgba(192, 94, 42, 0.2);
}

.value-expanded-card .value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(192, 94, 42, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.value-expanded-card h3 {
  color: var(--cream);
  margin-bottom: 12px;
}

.value-expanded-card p {
  color: rgba(248, 243, 236, 0.55);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Team Full Section */
.team-full {
  padding: var(--section-pad) 0;
}

.team-full-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}

.team-full-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
}

.team-full-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--cream);
  border: 1px solid rgba(44, 32, 22, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

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

.team-full-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--cream-dark), #e2d5c7);
  position: relative;
}

.team-full-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-full-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-full-info .role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burnt-orange);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.team-full-info p {
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.75;
}

/* Timeline */
.timeline-section {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}

.timeline-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}

.timeline {
  width: var(--container);
  margin: 0 auto;
  max-width: 700px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--burnt-orange), var(--sage), var(--lavender));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--burnt-orange);
  border: 3px solid var(--cream-dark);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 40px);
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(44, 32, 22, 0.06);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burnt-orange);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--warm-brown);
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detail {
  padding: var(--section-pad) 0;
}

.services-detail:nth-child(even) {
  background: var(--cream-dark);
}

.service-detail-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.service-detail-visual.branding-vis {
  background: linear-gradient(135deg, #e8ddd0, #ddd1c2);
}
.service-detail-visual.marketing-vis {
  background: linear-gradient(135deg, #dce4d7, #cdd8c6);
}
.service-detail-visual.sales-vis {
  background: linear-gradient(135deg, #e0dae7, #d4ccde);
}
.service-detail-visual.consulting-vis {
  background: linear-gradient(135deg, #e5dbd0, #d9cdbf);
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(44, 32, 22, 0.08);
  border-radius: 8px;
}

.service-detail-visual .detail-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.service-detail-visual .detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.15;
}

.service-detail-text h2 { margin-bottom: 20px; }

.service-detail-text p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-bullets {
  margin-bottom: 32px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--warm-brown);
}

.service-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burnt-orange);
  margin-top: 8px;
}

/* CTA Section */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 94, 42, 0.1), transparent 60%);
}

.cta-content {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--cream);
  margin-bottom: 16px;
  font-style: italic;
}

.cta-content p {
  color: rgba(248, 243, 236, 0.6);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-light {
  background: var(--cream);
  color: var(--dark);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-intro {
  padding: var(--section-pad) 0;
}

.careers-intro-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.careers-intro-text h2 { margin-bottom: 20px; }

.careers-intro-text p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  line-height: 1.85;
  margin-bottom: 16px;
}

.careers-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--cream-dark), #e0d4c6);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-visual .big-quote {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--dark);
  opacity: 0.06;
  text-align: center;
  padding: 40px;
  line-height: 1.1;
}

/* Process Steps */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}

.process-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}

.process-steps {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
}

.process-step {
  text-align: center;
  padding: 44px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(44, 32, 22, 0.06);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(192, 94, 42, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--warm-brown);
  line-height: 1.75;
}

/* Careers Values */
.careers-values {
  padding: var(--section-pad) 0;
}

.careers-values-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-pad) 0;
}

.contact-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* On desktop, form appears on the right, details on the left */
@media (min-width: 769px) {
  .contact-form-wrapper { order: 2; }
  .contact-details { order: 1; }
}

.contact-details h2 {
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(192, 94, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--burnt-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-method-text span,
.contact-method-text a {
  font-size: 0.95rem;
  color: var(--warm-brown);
}
.contact-method-text a:hover { color: var(--burnt-orange); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 32, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--dark);
  transition: fill 0.3s;
}

.social-link:hover {
  border-color: var(--burnt-orange);
  background: rgba(192, 94, 42, 0.06);
}
.social-link:hover svg { fill: var(--burnt-orange); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream);
  border: 1px solid rgba(44, 32, 22, 0.08);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(44, 32, 22, 0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burnt-orange);
  box-shadow: 0 0 0 3px rgba(192, 94, 42, 0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237B5E43' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-full-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .team-full-card { grid-template-columns: 1fr; }
  .team-full-photo { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-teaser-grid,
  .story-grid,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .careers-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-grid.reverse { direction: ltr; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-item:nth-child(2)::after { display: none; }

  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .stats-strip {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .process-steps { grid-template-columns: 1fr; max-width: 360px; }

  .values-expanded-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }
  .timeline-dot { left: 20px; }
  .timeline-content { width: 100%; }

  .contact-inner { flex-direction: column; align-items: flex-start; }
  .contact-info-group { flex-direction: column; gap: 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-center { align-items: center; }
  .footer-contact { align-items: center; justify-self: center; }
  .footer-brand { align-items: center; }
  .footer-nav { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

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

  .contact-form-wrapper { padding: 32px 24px; }

  .hero-content { padding: 20px 0; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-item::after { display: none !important; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .btn { padding: 14px 28px; font-size: 0.85rem; }
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================ */
.legal-content {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.legal-container {
  width: var(--container);
  margin: 0 auto;
  max-width: 760px;
}

.legal-container h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--dark);
}

.legal-container h2:first-child {
  margin-top: 0;
}

.legal-container p {
  font-size: 0.95rem;
  color: var(--warm-brown);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-container ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.legal-container li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--warm-brown);
  line-height: 1.75;
}

.legal-container li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burnt-orange);
  margin-top: 10px;
}

.legal-container a {
  color: var(--burnt-orange);
  transition: color 0.3s;
}

.legal-container a:hover {
  color: var(--burnt-orange-dark);
}
