/* ============================================
   CALDER BRANDS — GLOBAL STYLESHEET v2
   Palette: Ivory / Midnight Navy / Vivid Amber / Terracotta / Sage
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --ivory:      #FAF8F3;
  --white:      #FFFFFF;
  --navy:       #0B1930;
  --navy-mid:   #142240;
  --amber:      #E8962A;
  --amber-light:#F5B85A;
  --amber-pale: #FDF0DC;
  --coral:      #D4522A;
  --sage:       #2E5E47;
  --sage-light: #3D7A5F;
  --dark:       #0E0C09;
  --mid:        #6E6760;
  --border:     #E4DED5;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--dark); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 48px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(11,25,48,0.97); backdrop-filter: blur(14px);
  padding: 14px 48px; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(11,25,48,0.07);
}
.nav__logo svg { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__links a {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: var(--white); position: relative; padding-bottom: 3px; transition: color 0.2s;
}
.nav.scrolled .nav__links a { color: var(--white); }
.nav__links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--amber); transition: width 0.3s var(--ease); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: var(--amber); }
.nav.scrolled .nav__links a:hover { color: var(--amber); }
.nav__cta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--dark); background: var(--amber); padding: 11px 26px; transition: background 0.2s, transform 0.15s; }
.nav__cta:hover { background: var(--coral); color: var(--white); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }
.nav.scrolled .nav__hamburger span { background: var(--white); }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?w=1800&auto=format&fit=crop&q=80');
  background-size: cover; background-position: center;
  transform: scale(1.04); animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,25,48,0.88) 0%, rgba(11,25,48,0.5) 55%, rgba(46,94,71,0.35) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 0 48px 80px; width: 100%; }
.hero__eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.hero__eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--amber); }
.hero__title { font-family: var(--font-display); font-size: clamp(52px,7.5vw,108px); font-weight: 300; line-height: 1.0; color: var(--white); max-width: 820px; margin-bottom: 32px; }
.hero__title em { font-style: italic; color: var(--amber-light); }
.hero__sub { font-size: 17px; color: rgba(255,255,255,0.65); font-weight: 300; max-width: 480px; line-height: 1.75; margin-bottom: 44px; }
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 80px; right: 48px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero__scroll::after { content: ''; width: 1px; height: 60px; background: linear-gradient(to bottom, var(--amber), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.5; } 50% { opacity: 0.1; } }

/* ===== BUTTONS ===== */
.btn { display: inline-block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 15px 32px; transition: all 0.25s var(--ease); }
.btn--primary { background: var(--amber); color: var(--dark); }
.btn--primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,150,42,0.4); }
.btn--outline { border: 1px solid rgba(255,255,255,0.45); color: var(--white); }
.btn--outline:hover { border-color: var(--amber); color: var(--amber); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,25,48,0.25); }
.btn--sage { background: var(--sage); color: var(--white); }
.btn--sage:hover { background: var(--sage-light); transform: translateY(-2px); }
.btn--amber-outline { border: 1px solid var(--amber); color: var(--amber); }
.btn--amber-outline:hover { background: var(--amber); color: var(--dark); }

/* ===== TICKER ===== */
.ticker { background: var(--amber); padding: 13px 0; overflow: hidden; }
.ticker__track { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker__item { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); font-weight: 600; padding: 0 40px; flex-shrink: 0; display: flex; align-items: center; gap: 40px; }
.ticker__item::after { content: '◆'; font-size: 7px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION LABELS ===== */
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--amber); }
.section-label--sage { color: var(--sage-light); }
.section-label--sage::before { background: var(--sage-light); }
.section-title { font-family: var(--font-display); font-size: clamp(36px,4.5vw,64px); font-weight: 300; line-height: 1.08; }
.section-title em { font-style: italic; color: var(--amber); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--amber-light); }
.section-subtitle { font-size: 16px; color: var(--mid); font-weight: 300; line-height: 1.8; max-width: 560px; }

/* ===== ABOUT SNAPSHOT ===== */
.about-snap { padding: 120px 0; background: var(--white); }
.about-snap__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-snap__img { position: relative; overflow: hidden; aspect-ratio: 4/5; box-shadow: 20px 20px 0 var(--amber-pale); }
.about-snap__img img { height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-snap__img:hover img { transform: scale(1.04); }
.about-snap__text { display: flex; flex-direction: column; gap: 24px; }
.about-snap__body { font-size: 17px; line-height: 1.85; color: #2C2825; font-weight: 300; }
.about-snap__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 28px 0; border-top: 2px solid var(--amber); border-bottom: 2px solid var(--amber); margin: 4px 0; }
.about-snap__stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--navy); line-height: 1; }
.about-snap__stat-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-top: 6px; }

/* ===== PHOTO MOSAIC ===== */
.photo-mosaic { overflow: hidden; }
.mosaic-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 360px 360px; gap: 4px; }
.mosaic-cell { overflow: hidden; position: relative; }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mosaic-cell:hover img { transform: scale(1.06); }
.mosaic-cell--tall { grid-row: span 2; }
.mosaic-cell__label { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 20px; background: linear-gradient(to top, rgba(11,25,48,0.8), transparent); color: var(--white); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; opacity: 0; transition: opacity 0.3s; }
.mosaic-cell:hover .mosaic-cell__label { opacity: 1; }

/* ===== SPLIT FEATURE ===== */
.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.split-feature__img { overflow: hidden; }
.split-feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.split-feature:hover .split-feature__img img { transform: scale(1.04); }
.split-feature__content { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.split-feature--navy .split-feature__content { background: var(--navy); }
.split-feature--sage .split-feature__content { background: var(--sage); }
.split-feature--amber .split-feature__content { background: var(--amber); }
.split-feature--amber .section-title { color: var(--dark); }
.split-feature--amber .split-feature__body { color: rgba(14,12,9,0.65); }
.split-feature--amber .section-label { color: var(--dark); opacity: 0.7; }
.split-feature--amber .section-label::before { background: var(--dark); opacity: 0.5; }
.split-feature__body { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.65); font-weight: 300; }
.split-feature--reverse .split-feature__img { order: 2; }
.split-feature--reverse .split-feature__content { order: 1; }

/* ===== SERVICES GRID ===== */
.services-home { padding: 120px 0; background: var(--ivory); }
.services-home__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.services-home__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--border); }
.service-card { background: var(--white); padding: 44px 36px; display: flex; flex-direction: column; gap: 14px; transition: background 0.3s; }
.service-card:hover { background: var(--navy); }
.service-card:hover .service-card__num { color: var(--amber); }
.service-card:hover .service-card__icon { color: var(--sage-light); }
.service-card:hover .service-card__title { color: var(--white); }
.service-card:hover .service-card__body { color: rgba(255,255,255,0.6); }
.service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }
.service-card__num { font-family: var(--font-display); font-size: 13px; color: var(--amber); letter-spacing: 0.05em; }
.service-card__icon { font-size: 22px; color: var(--border); transition: color 0.3s; }
.service-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.25; color: var(--dark); transition: color 0.3s; }
.service-card__body { font-size: 14px; line-height: 1.75; color: var(--mid); font-weight: 300; transition: color 0.3s; }
.service-card__arrow { font-size: 20px; color: var(--amber); margin-top: auto; opacity: 0; transform: translateX(-10px); transition: opacity 0.3s, transform 0.3s; }

/* ===== CTA ===== */
.cta-section { position: relative; overflow: hidden; background: var(--navy); padding: 120px 0; }
.cta-section__bg { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1800&auto=format&fit=crop&q=80'); background-size: cover; background-position: center; opacity: 0.12; }
.cta-section__inner { text-align: center; position: relative; z-index: 1; }
.cta-section__title { font-family: var(--font-display); font-size: clamp(40px,5.5vw,80px); font-weight: 300; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
.cta-section__title em { font-style: italic; color: var(--amber-light); }
.cta-section__sub { font-size: 17px; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 520px; margin: 0 auto 48px; line-height: 1.8; }
.cta-section__actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ===== PAGE HEROES ===== */
.page-hero { padding: 180px 0 100px; background: var(--navy); position: relative; overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero__eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero__eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--amber); }
.page-hero__title { font-family: var(--font-display); font-size: clamp(48px,6vw,88px); font-weight: 300; line-height: 1.05; color: var(--white); max-width: 820px; }
.page-hero__title em { font-style: italic; color: var(--amber-light); }
.page-hero__sub { font-size: 17px; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 540px; line-height: 1.8; margin-top: 28px; }
.page-hero__stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--amber), var(--coral), var(--sage-light)); }

/* ===== ABOUT PAGE ===== */
.about-mission { padding: 120px 0; background: var(--white); }
.about-mission__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
.about-mission__quote { font-family: var(--font-display); font-size: clamp(22px,2.2vw,34px); font-weight: 300; font-style: italic; line-height: 1.45; color: var(--navy); border-left: 3px solid var(--amber); padding-left: 28px; }
.about-mission__body { display: flex; flex-direction: column; gap: 20px; }
.about-mission__body p { font-size: 16px; line-height: 1.9; color: #2C2825; font-weight: 300; }
.about-image-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; height: 460px; overflow: hidden; }
.about-image-grid > div { overflow: hidden; }
.about-image-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.about-image-grid > div:hover img { transform: scale(1.06); }
.about-values { padding: 120px 0; background: var(--ivory); }
.about-values__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; margin-top: 64px; }
.value-item { display: flex; flex-direction: column; gap: 14px; }
.value-item__num { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--amber); line-height: 1; }
.value-item__title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--navy); }
.value-item__body { font-size: 14px; line-height: 1.85; color: var(--mid); font-weight: 300; }
.about-banner { height: 500px; overflow: hidden; position: relative; }
.about-banner img { width: 100%; height: 100%; object-fit: cover; }
.about-banner__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,25,48,0.8) 0%, rgba(11,25,48,0.2) 55%); display: flex; align-items: center; }
.about-banner__quote { padding: 0 80px; max-width: 640px; font-family: var(--font-display); font-size: clamp(28px,3.5vw,52px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.25; }
.about-banner__quote em { color: var(--amber-light); font-style: normal; }

/* ===== SERVICES PAGE ===== */
.services-full { padding: 80px 0; background: var(--ivory); }
.services-full__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border); }
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-item { display: grid; grid-template-columns: 64px 1fr 1.2fr auto; align-items: center; gap: 28px; background: var(--white); padding: 36px 40px; transition: background 0.3s; border-bottom: 1px solid var(--border); cursor: default; }
.service-item:hover { background: var(--navy); }
.service-item:hover .service-item__num { color: var(--amber); }
.service-item:hover .service-item__name { color: var(--white); }
.service-item:hover .service-item__desc { color: rgba(255,255,255,0.6); }
.service-item:hover .service-item__tag { border-color: rgba(232,150,42,0.35); color: var(--amber); }
.service-item__num { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--border); transition: color 0.3s; }
.service-item__name { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--dark); transition: color 0.3s; }
.service-item__desc { font-size: 14px; color: var(--mid); line-height: 1.75; font-weight: 300; transition: color 0.3s; }
.service-item__tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); padding: 6px 14px; color: var(--mid); white-space: nowrap; transition: all 0.3s; }
.services-img-row { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 380px; overflow: hidden; gap: 4px; }
.services-img-row > div { overflow: hidden; }
.services-img-row img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.services-img-row > div:hover img { transform: scale(1.05); }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info__item { display: flex; flex-direction: column; gap: 8px; }
.contact-info__label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.contact-info__value { font-size: 16px; color: #2C2825; font-weight: 300; }
.contact-img { overflow: hidden; height: 260px; margin-top: 16px; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.contact-img:hover img { transform: scale(1.04); }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { background: var(--ivory); border: 1.5px solid var(--border); padding: 14px 16px; font-family: var(--font-body); font-size: 15px; color: var(--dark); font-weight: 300; outline: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); background: var(--white); box-shadow: 0 0 0 3px rgba(232,150,42,0.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--mid); font-weight: 300; }
.form-success { display: none; padding: 20px 24px; background: rgba(232,150,42,0.08); border: 1.5px solid var(--amber); color: var(--dark); font-size: 15px; font-weight: 300; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer__stripe { height: 4px; background: linear-gradient(to right, var(--amber), var(--coral), var(--sage-light)); }
.footer { background: var(--navy); padding: 80px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand svg { height: 52px; width: auto; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.75; }
.footer__col-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; font-weight: 600; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container, .container--narrow { padding: 0 32px; }
  .nav { padding: 20px 32px; } .nav.scrolled { padding: 14px 32px; }
  .services-home__grid { grid-template-columns: repeat(2,1fr); }
  .about-snap__inner { gap: 48px; }
  .about-values__grid { grid-template-columns: repeat(2,1fr); }
  .service-item { grid-template-columns: 48px 1fr 1fr; } .service-item__tag { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mosaic-grid { grid-template-columns: 1.2fr 1fr; grid-template-rows: 300px 300px; }
  .split-feature__content { padding: 60px 48px; }
}
@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 20px; }
  .nav { padding: 16px 20px; } .nav.scrolled { padding: 12px 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__content { padding: 0 20px 60px; } .hero__scroll { display: none; }
  .about-snap__inner { grid-template-columns: 1fr; }
  .about-snap__img { aspect-ratio: 16/9; box-shadow: 12px 12px 0 var(--amber-pale); }
  .services-home__grid { grid-template-columns: 1fr; }
  .services-home__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .about-mission__inner { grid-template-columns: 1fr; }
  .services-full__intro { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 48px 1fr; gap: 12px; } .service-item__desc { display: none; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .mosaic-cell--tall { grid-row: span 1; }
  .mosaic-grid .mosaic-cell:nth-child(3) { display: none; }
  .about-image-grid .about-image-grid__item:nth-child(3),
  .about-image-grid > div:nth-child(3) { display: none; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature--reverse .split-feature__img { order: 0; } .split-feature--reverse .split-feature__content { order: 0; }
  .split-feature__img { height: 280px; } .split-feature__content { padding: 40px 24px; }
  .about-snap { padding: 56px 0; }
  .services-home { padding: 56px 0; }
  .cta-section { padding: 64px 0; }
  .about-mission { padding: 56px 0; }
  .about-values { padding: 56px 0; }
  .services-full { padding: 48px 0; }
  .contact-section { padding: 56px 0; }
  .page-hero { padding: 120px 0 60px; }
  .about-image-grid { grid-template-columns: 1fr 1fr; height: 300px; }
  .services-img-row { grid-template-columns: 1fr 1fr; height: 260px; }
  .services-img-row > div:nth-child(3) { display: none; }
  .about-banner__quote { padding: 0 24px; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}
