/* Stone & Hammer Property Services — Landing Page */

:root {
  --navy: #1B365D;
  --navy-deep: #122845;
  --grey-bg: #F4F4F4;
  --white: #FFFFFF;
  --orange: #F28C28;
  --orange-hover: #e07d1f;
  --text: #1E1E1E;
  --text-muted: #5a5a5a;
  --shadow: 0 4px 24px rgba(27, 54, 93, 0.08);
  --shadow-lg: 0 20px 50px rgba(27, 54, 93, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --mobile-cta-h: 64px;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.preloader-active {
  overflow: hidden;
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #243f66 100%);
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  padding: 2rem;
  max-width: 320px;
}

.preloader-scene {
  position: relative;
  width: 200px;
  height: 160px;
  margin: 0 auto 1.5rem;
}

.preloader-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.preloader-hammer {
  transform-origin: 128px 78px;
  animation: preloaderHammer 0.85s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes preloaderHammer {
  0%, 100% { transform: rotate(-32deg); }
  45% { transform: rotate(6deg); }
  55% { transform: rotate(4deg); }
}

.wood-plank {
  animation: woodShake 0.85s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes woodShake {
  0%, 40%, 100% { transform: translateY(0); }
  48% { transform: translateY(2px); }
  52% { transform: translateY(-1px); }
}

.spark {
  opacity: 0;
  animation: sparkFly 0.85s ease-out infinite;
}

.spark-1 { animation-delay: 0.42s; }
.spark-2 { animation-delay: 0.45s; }
.spark-3 { animation-delay: 0.48s; }

@keyframes sparkFly {
  0%, 38% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  48% { opacity: 1; transform: translate(-6px, -14px) scale(1); }
  70% { opacity: 0; transform: translate(-12px, -28px) scale(0.3); }
  100% { opacity: 0; }
}

.preloader-chips {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 0;
  height: 0;
}

.preloader-chips span {
  position: absolute;
  width: 6px;
  height: 4px;
  background: #C4A35A;
  border-radius: 1px;
  opacity: 0;
  animation: chipBurst 0.85s ease-out infinite;
}

.preloader-chips span:nth-child(1) { animation-delay: 0.44s; --chip-x: -28px; --chip-y: -20px; --chip-r: -25deg; }
.preloader-chips span:nth-child(2) { animation-delay: 0.46s; --chip-x: -12px; --chip-y: -32px; --chip-r: 15deg; }
.preloader-chips span:nth-child(3) { animation-delay: 0.45s; --chip-x: 8px; --chip-y: -26px; --chip-r: 40deg; }
.preloader-chips span:nth-child(4) { animation-delay: 0.47s; --chip-x: 22px; --chip-y: -18px; --chip-r: -10deg; }
.preloader-chips span:nth-child(5) { animation-delay: 0.43s; --chip-x: -18px; --chip-y: -12px; --chip-r: 55deg; }

@keyframes chipBurst {
  0%, 40% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  50% { opacity: 1; transform: translate(var(--chip-x), var(--chip-y)) rotate(var(--chip-r)); }
  80% { opacity: 0; transform: translate(calc(var(--chip-x) * 1.3), calc(var(--chip-y) * 1.4)) rotate(var(--chip-r)); }
  100% { opacity: 0; }
}

.preloader-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
}

.preloader-tagline {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
}

.preloader-progress {
  width: 200px;
  height: 3px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.preloader-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ffd08a);
  border-radius: inherit;
  animation: preloaderBar 1.8s var(--ease-out) forwards;
}

@keyframes preloaderBar {
  0% { width: 0; }
  70% { width: 85%; }
  100% { width: 100%; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 140, 40, 0.35);
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

.btn-glow {
  box-shadow: 0 4px 20px rgba(242, 140, 40, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.text-accent {
  color: var(--orange);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  transform: translateY(20px);
}

.hero.is-ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.hero .reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.hero .reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
.hero .reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }
.hero .reveal[data-reveal-delay="5"] { transition-delay: 0.4s; }
.hero .reveal[data-reveal-delay="6"] { transition-delay: 0.48s; }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--grey-bg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.btn.is-disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  min-height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27, 54, 93, 0.08);
}

.site-header:not(.is-scrolled) .main-nav a,
.site-header:not(.is-scrolled) .logo img {
  filter: none;
}

.site-header:not(.is-scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-scrolled) .main-nav a:hover {
  color: var(--orange);
}

.site-header:not(.is-scrolled) .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header:not(.is-scrolled) .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

body {
  padding-top: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo img {
  height: 46px;
  width: auto;
  max-width: min(220px, 55vw);
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-call {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: -4%;
  background:
    url("assets/hero.jpg") center / cover no-repeat,
    linear-gradient(160deg, #2a4a72 0%, var(--navy) 50%, var(--navy-deep) 100%);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 40, 69, 0.92) 0%, rgba(27, 54, 93, 0.72) 42%, rgba(27, 54, 93, 0.35) 100%),
    linear-gradient(180deg, transparent 60%, rgba(18, 40, 69, 0.85) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-glow--1 {
  width: 320px;
  height: 320px;
  background: var(--orange);
  top: 15%;
  right: 10%;
  animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow--2 {
  width: 240px;
  height: 240px;
  background: #4a7ab8;
  bottom: 20%;
  left: 5%;
  animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 5vh, 4rem) 0 clamp(4rem, 8vh, 5rem);
}

.hero-panel {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--orange);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.08rem;
  margin: 0 0 0.85rem;
  line-height: 1.65;
  opacity: 0.92;
  max-width: 520px;
}

.hero-slogan {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--orange);
  margin: 0 0 1.25rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.hero-pills i {
  color: var(--orange);
  font-size: 0.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.hero-card-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero-card:hover .hero-card-photo img {
  transform: scale(1.05);
}

.hero-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.hero-card-text {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.5;
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
}

.hero-card-link:hover {
  gap: 0.65rem;
  text-decoration: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero-metric {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero-metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}

.hero-metric-label {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll:hover {
  color: var(--white);
  text-decoration: none;
}

.hero-scroll i {
  font-size: 0.85rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 2;
  background: var(--white);
  clip-path: ellipse(75% 100% at 50% 100%);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section:nth-child(even) {
  background: var(--grey-bg);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* Services */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(27, 54, 93, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 140, 40, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Kitchen — full-width highlight (separate from .service-card to avoid style clash) */
.service-highlight {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.service-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.service-highlight::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.service-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(27, 54, 93, 0.25);
}

.service-highlight-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 140, 40, 0.22);
  color: var(--orange);
  border-radius: 14px;
  font-size: 1.4rem;
}

.service-highlight-body {
  position: relative;
  z-index: 1;
}

.service-highlight-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.4rem;
}

.service-highlight-desc {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  max-width: 52ch;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange);
  border-radius: 14px;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
  transition: transform 0.35s var(--ease-out), background var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(242, 140, 40, 0.2);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 54, 93, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-grid {
  counter-reset: why;
}

.why-card::before {
  counter-increment: why;
  content: counter(why, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(242, 140, 40, 0.35);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 0.65rem;
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Gallery */
.our-work {
  background: var(--white);
}

/* Before & After */
.before-after-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem;
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 54, 93, 0.06);
}

.before-after-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.before-after-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.before-after-info p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.before-after-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.ba-shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.ba-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.ba-shot:hover img {
  transform: scale(1.04);
}

.ba-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

.ba-label--before {
  background: rgba(30, 30, 30, 0.75);
  color: var(--white);
}

.ba-label--after {
  background: var(--orange);
  color: var(--white);
}

.ba-divider {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.gallery-subhead {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 520px;
}

.gallery-subhead h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.gallery-subhead p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.gallery-item--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 320px;
}

.gallery-item--featured figcaption {
  font-size: 1.1rem;
}

.gallery-item--featured img {
  object-position: 50% 28%;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(27, 54, 93, 0.82) 100%);
  opacity: 0.85;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  text-align: left;
  z-index: 1;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item img {
  transition: transform 0.35s ease;
}

/* Media / video showcase */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 860px;
}

.media-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card figcaption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}

/* Reviews */
.reviews-coming {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 54, 93, 0.06);
}

.services {
  position: relative;
  margin-top: -24px;
  z-index: 3;
}

.reviews-coming h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 1rem;
}

.reviews-coming p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 1.25rem;
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-visual {
  margin: 0;
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, var(--orange), transparent);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-visual figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* Quote form */
.quote {
  background: var(--grey-bg);
}

.quote-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27, 54, 93, 0.06);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  font-weight: 500;
  font-size: 0.9rem;
}

.required {
  color: var(--orange);
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d8dde6;
  border-radius: 10px;
  background: var(--grey-bg);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.12);
}

.form-hint {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
}

.form-success {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  text-align: center;
  color: #1b5e20;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details p {
  margin: 0 0 0.75rem;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.service-area h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 1rem;
}

.service-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-area li {
  background: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(27, 54, 93, 0.12);
}

.contact .section-header + .contact-grid {
  margin-top: 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0 calc(2.5rem + var(--mobile-cta-h));
}

.footer-inner {
  text-align: center;
}

.footer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

.footer-brand p {
  margin: 0.25rem 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-slogan {
  color: var(--orange);
  font-weight: 600;
  margin-top: 0.5rem !important;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.25rem 0;
}

.footer-links a {
  color: var(--white);
  opacity: 0.85;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + var(--mobile-cta-h));
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.05);
  background: #1fb855;
  text-decoration: none;
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  height: var(--mobile-cta-h);
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(27, 54, 93, 0.1);
}

.mobile-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  padding: 0.5rem;
  border-right: 1px solid rgba(27, 54, 93, 0.08);
}

.mobile-cta-btn:last-child {
  border-right: none;
  background: var(--orange);
  color: var(--white);
}

.mobile-cta-btn.btn-whatsapp {
  color: #25d366;
  background: transparent;
  border-color: transparent;
}

.mobile-cta-btn i {
  font-size: 1.1rem;
}

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 420px;
  }

  .service-highlight {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 0 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-call {
    display: inline-flex;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-bottom: 5rem;
  }

  .hero-aside {
    max-width: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .site-header:not(.is-scrolled) .main-nav a {
    color: var(--text);
  }

  .before-after-pair {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ba-divider {
    justify-self: center;
    transform: rotate(90deg);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--featured {
    grid-column: span 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .media-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .mobile-cta {
    display: grid;
  }

  .fab-whatsapp {
    bottom: calc(1rem + var(--mobile-cta-h));
  }

  body {
    padding-bottom: var(--mobile-cta-h);
  }

  .site-footer {
    padding-bottom: calc(1.5rem + var(--mobile-cta-h));
  }
}

@media (min-width: 769px) {
  .fab-whatsapp {
    bottom: 1.25rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}
