/* ═══════════════════════════════════════════════════
   BLUE SKY LANDSCAPING INC.
   Luxury Cinematic Landscape Design Website
   Design: @giftedpixel2026
═══════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --ink:        #0d0f0c;
  --ink-soft:   #1c1f1a;
  --sage:       #3d5a44;
  --sage-mid:   #5a7a61;
  --sage-light: #a8c4ab;
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --cream:      #f7f4ed;
  --cream-deep: #ede8de;
  --white:      #ffffff;
  --glass:      rgba(13,15,12,0.55);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Bebas Neue', sans-serif;

  /* Spacing */
  --section-gap: clamp(80px, 10vw, 140px);
  --container:   1280px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--sage);
  cursor: pointer;
  transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth), border-color 0.3s;
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-primary.full-width {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 14px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ── Section Shared ───────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.section-eyebrow.light { color: var(--sage-light); }

.section-header { margin-bottom: clamp(50px, 6vw, 80px); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--sage);
}
.section-header.light .section-title,
.section-header.light .section-title em {
  color: var(--white);
}
.section-header.light .section-title em { color: var(--sage-light); }

/* ── Reveal Animations ────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.9s var(--ease-expo) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 60px);
  transition: background 0.4s var(--ease-smooth), padding 0.4s;
}
.nav.scrolled {
  background: rgba(13,15,12,0.95);
  backdrop-filter: blur(12px);
  padding: 14px clamp(20px, 5vw, 60px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  color: var(--gold);
  font-size: 18px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 11px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: var(--sage);
  border-color: var(--sage);
}

.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-menu ul li a.mobile-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.06);
  animation: heroScale 8s var(--ease-expo) forwards;
}
@keyframes heroScale {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,15,12,0.92) 0%,
    rgba(13,15,12,0.45) 40%,
    rgba(13,15,12,0.15) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 60px) clamp(120px, 16vw, 200px);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage-light);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(100px, 14vw, 160px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 60px);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 clamp(20px, 3vw, 44px);
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.desktop-br { display: block; }

/* ══════════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════════ */
.statement {
  padding: var(--section-gap) 0;
  background: var(--ink-soft);
}
.statement-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto auto;
  gap: 0 60px;
  align-items: start;
}
.statement-label {
  grid-row: 1 / 3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-mid);
  padding-top: 10px;
  writing-mode: vertical-rl;
  align-self: center;
  transform: rotate(180deg);
}
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  border: none;
}
.statement-quote em { color: var(--sage-light); font-style: italic; }
.statement-body {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 600px;
}

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.project-featured {
  margin: 0 0 clamp(40px, 5vw, 70px);
  overflow: hidden;
  position: relative;
}
.project-featured-img {
  height: clamp(460px, 60vw, 700px);
  overflow: hidden;
  position: relative;
}
.project-featured-img img {
  transition: transform 0.8s var(--ease-smooth);
}
.project-featured:hover .project-featured-img img {
  transform: scale(1.04);
}
.project-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,12,0.9) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
}
.project-featured-info {
  padding: clamp(30px, 4vw, 60px);
  max-width: 600px;
}
.project-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.project-featured-info h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.project-featured-info p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-card.tall { grid-row: span 2; }
.portfolio-card.wide { grid-column: span 2; }

.portfolio-card-img {
  width: 100%; height: 100%;
  overflow: hidden;
}
.portfolio-card-img img {
  transition: transform 0.7s var(--ease-smooth);
}
.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.07);
}

.portfolio-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(13,15,12,0.88), transparent);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-smooth);
}
.portfolio-card:hover .portfolio-card-info {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-card-info h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}

.portfolio-cta {
  margin-top: clamp(40px, 5vw, 70px);
  text-align: center;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.services-bg-img {
  position: absolute;
  inset: 0;
}
.services-bg-img img { object-position: center 70%; }
.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,12,0.87);
}
.services-inner { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

.service-card {
  padding: clamp(32px, 3.5vw, 50px);
  background: rgba(13,15,12,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.service-card:hover { background: rgba(61,90,68,0.25); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--sage-mid);
  margin-bottom: 16px;
}
.service-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.service-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage-mid);
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process {
  padding: var(--section-gap) 0;
  background: var(--cream-deep);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.process-img {
  position: sticky;
  top: 120px;
}
.process-img > div:first-child,
.process-img img {
  aspect-ratio: 4/5;
  height: auto;
  object-fit: cover;
  filter: none;
}
.process-img-caption {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid rgba(13,15,12,0.1);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }

.step-marker {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-marker span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--sage);
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(13,15,12,0.65);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   GALLERY STRIP
══════════════════════════════════════════════ */
.gallery-strip {
  overflow: hidden;
  height: 220px;
  background: var(--ink);
}
.gallery-strip-track {
  display: flex;
  gap: 12px;
  height: 100%;
  animation: stripScroll 30s linear infinite;
}
.gallery-strip-track:hover { animation-play-state: paused; }

@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-strip-item {
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  overflow: hidden;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.gallery-strip-item:hover { opacity: 1; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.testimonial-card {
  padding: clamp(30px, 3vw, 48px);
  background: var(--white);
  border: 1px solid rgba(13,15,12,0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(13,15,12,0.1);
}

.featured-testimonial {
  grid-row: 1 / 3;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.7;
  color: var(--cream-deep);
  margin-bottom: 20px;
  font-weight: 300;
  user-select: none;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  border: none;
  padding: 0;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 12px;
  color: rgba(13,15,12,0.5);
  letter-spacing: 0.04em;
}

.testimonial-project {
  margin-top: 28px;
  height: 180px;
  overflow: hidden;
}
.testimonial-project img {
  transition: transform 0.6s var(--ease-smooth);
}
.testimonial-card:hover .testimonial-project img {
  transform: scale(1.04);
}

/* ══════════════════════════════════════════════
   TRUST
══════════════════════════════════════════════ */
.trust {
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--ink-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
  padding: clamp(28px, 3vw, 44px);
  text-align: center;
  background: var(--ink-soft);
  transition: background 0.3s;
}
.trust-item:hover { background: rgba(61,90,68,0.2); }

.trust-icon {
  font-size: 32px;
  margin-bottom: 18px;
  filter: grayscale(0.4);
}
.trust-item h4 {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.trust-item p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ENQUIRY
══════════════════════════════════════════════ */
.enquiry {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.enquiry-bg {
  position: absolute;
  inset: 0;
}
.enquiry-bg img { object-position: center 30%; }
.enquiry-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,12,0.88);
}

.enquiry-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.enquiry-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.enquiry-headline em { font-style: italic; color: var(--sage-light); }

.enquiry-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.enquiry-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.enquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.contact-icon { font-size: 16px; }

/* Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-light);
}
.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--ink); color: var(--white); }

.form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(255,255,255,0.15);
}
.success-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.form-success p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: clamp(60px, 7vw, 100px) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: clamp(50px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-logo .nav-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--sage-light);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .statement-label { writing-mode: horizontal-tb; transform: none; }

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

  .process-layout { grid-template-columns: 1fr; }
  .process-img { position: static; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testimonial { grid-row: auto; }

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

  .enquiry-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════ */
@media (max-width: 680px) {
  .desktop-br { display: none; }

  .hero-stats {
    gap: 0;
    padding: 16px 20px;
  }
  .stat { padding: 0 12px; }
  .stat:first-child { padding-left: 0; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .portfolio-card.tall,
  .portfolio-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

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

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

  .footer-links { grid-template-columns: 1fr 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .gallery-strip { height: 160px; }
  .gallery-strip-item { width: 240px; }
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
