/*!
 * Benjamin Worth Gardens Ltd — Main Stylesheet
 * Premium Cornish garden maintenance. Editorial. Photography-led.
 */

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */

:root {
  --gold:      #B8962E;
  --gold-dim:  #96780E;
  --black:     #181614;
  --ink:       #1C1A18;
  --mid:       #5A5248;
  --muted:     #8A8278;
  --border:    #E2DDD4;
  --cream:     #F5F2EC;
  --white:     #FFFFFF;
  --nav-h:     72px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --container-wide: 1400px;
}

/* ═══════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ═══════════════════════════════════════════
   SKIP LINK
═══════════════════════════════════════════ */

.skip-to-content {
  position: absolute;
  top: -48px;
  left: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 8px;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Default / scrolled state */
.main-nav.scrolled,
.main-nav:not(.hero-mode) {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

/* Hero transparent state */
.main-nav.hero-mode {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(32px, 4vw, 64px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  background: var(--black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s ease;
}

.hero-mode .nav-brand-mark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-brand-mark svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.hero-mode .nav-brand-name {
  color: var(--white);
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.4s ease;
}

.hero-mode .nav-brand-sub {
  color: rgba(255, 255, 255, 0.5);
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  margin-left: 48px;
  justify-content: space-between;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.hero-mode .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.hero-mode .nav-link:hover,
.hero-mode .nav-link.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-phone:hover {
  color: var(--ink);
}

.hero-mode .nav-phone {
  color: rgba(255, 255, 255, 0.6);
}

.hero-mode .nav-phone:hover {
  color: var(--white);
}

/* Nav CTA button — sharp, outlined */
.btn-nav-cta {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.hero-mode .btn-nav-cta {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-mode .btn-nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mode .hamburger-line {
  background: var(--white);
}

.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — full screen */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-inner {
  padding: 32px 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.mobile-nav-actions .btn {
  text-align: center;
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   PAGE SCAFFOLDING
═══════════════════════════════════════════ */

body.home main {
  padding-top: 0;
}

body:not(.home) main {
  padding-top: var(--nav-h);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

/* Section utilities */
.section {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 64px);
}

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

.section-white {
  background: var(--white);
}

/* Section eyebrow */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

.hero-parallax {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 60%;
  will-change: transform;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(15, 12, 10, 0.72) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 clamp(32px, 5vw, 80px) clamp(48px, 5vw, 80px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 6px;
}

.hero-brand-line {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.hero-cta-link:hover {
  border-color: var(--gold);
  gap: 16px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════ */

.statement {
  padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 64px);
  background: var(--white);
  text-align: center;
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   WORK / GALLERY
═══════════════════════════════════════════ */

.work {
  background: var(--white);
}

.work-label {
  padding: 0 clamp(24px, 4vw, 64px) 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.gi {
  overflow: hidden;
  height: 340px;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}

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

.gi-full {
  grid-column: 1 / -1;
  height: 520px;
}

.gi-2 {
  grid-column: span 2;
  height: 340px;
}

.gi-tall {
  height: 683px; /* 340*2 + 3px gap */
  grid-row: span 2;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */

.about {
  background: var(--cream);
}

.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

/* Text links */
.text-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */

.services {
  background: var(--white);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 4vw, 64px);
}

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

.services-head {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.svc-list {
  border-top: 1px solid var(--border);
}

.svc-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.svc-n {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.svc-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.svc-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  max-width: 260px;
}

/* ═══════════════════════════════════════════
   AREAS / MAP
═══════════════════════════════════════════ */

.areas {
  background: var(--cream);
}

.areas-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 64px);
}

.areas-inner + .areas-inner {
  padding-top: 24px;
  padding-bottom: clamp(64px, 8vw, 96px);
}

.areas-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.areas-head p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 560px;
}

.map-wrap {
  position: relative;
}

#cornwall-map {
  height: 520px;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.areas-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 0;
}

.areas-note a {
  color: var(--gold);
  text-decoration: none;
}

.areas-note a:hover {
  text-decoration: underline;
}

/* Leaflet overrides */
.leaflet-popup-content-wrapper {
  border-radius: 2px !important;
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  padding: 10px 16px !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  color: var(--white) !important;
}

.leaflet-popup-tip {
  background: var(--black) !important;
}

.leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.4) !important;
  top: 6px !important;
  right: 8px !important;
}

.leaflet-container {
  font-family: var(--font-body) !important;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */

.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 64px);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  will-change: transform;
  display: block;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.5);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-cta-primary:hover {
  background: var(--gold-dim);
}

.btn-cta-secondary {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--muted);
  transition: transform 0.3s ease, fill 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  fill: var(--gold);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  font-family: var(--font-body);
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   BUTTONS (general)
═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid transparent;
  padding: 14px 32px;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-gold,
.btn-gold-lg {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold-lg:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
}

.btn-outline,
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-outline:hover,
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-black,
.btn-black-lg {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-black:hover,
.btn-black-lg:hover {
  background: #2a2825;
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════
   CONTACT / FORM
═══════════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--black);
  padding: 48px 40px;
}

.contact-info-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-info-panel > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(184, 150, 46, 0.12);
  border: 1px solid rgba(184, 150, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 3px;
  display: block;
}

.contact-detail a,
.contact-detail span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: block;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-social {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

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

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: rgba(184, 150, 46, 0.12);
  border-color: rgba(184, 150, 46, 0.4);
  color: var(--gold);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-areas-panel {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-areas-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.contact-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-form-panel {
  background: var(--cream);
  padding: 48px 44px;
}

.contact-form-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form-panel > p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.1);
}

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

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

.form-submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
}

.form-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}

.form-error {
  display: none;
  color: #c0392b;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 0;
}

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

.page-hero {
  background: var(--black);
  padding: clamp(60px, 8vw, 96px) clamp(24px, 4vw, 64px) clamp(48px, 6vw, 72px);
}

.page-hero-content {
  max-width: var(--container);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

.site-footer {
  background: var(--black);
  padding: 56px clamp(24px, 4vw, 64px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  display: block;
  text-decoration: none;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand > p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  margin-bottom: 18px;
}

.footer-phone {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.footer-phone:hover {
  color: var(--gold);
}

.footer-email {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
}

.footer-email:hover {
  color: rgba(184, 150, 46, 0.7);
}

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

.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background: rgba(184, 150, 46, 0.15);
  border-color: rgba(184, 150, 46, 0.4);
  color: var(--gold);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — ADDITIONAL
═══════════════════════════════════════════ */

.about-section {
  overflow: hidden;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-strip-text {
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-text > * {
  max-width: 520px;
}

.about-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-strip-text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-strip-text p:last-of-type {
  margin-bottom: 28px;
}

.about-strip-image {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.about-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   AREAS TEXT LIST (for areas page)
═══════════════════════════════════════════ */

.areas-text-list {
  text-align: center;
  padding: 4px 0 24px;
  line-height: 1.9;
}

.areas-text-list .area-name-item {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.area-dot {
  font-size: clamp(18px, 2vw, 28px);
  color: var(--gold);
  margin: 0 10px;
  font-weight: 400;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   PROCESS FLOW
═══════════════════════════════════════════ */

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.process-flow-item {
  padding: 36px 28px 32px 0;
  border-right: 1px solid var(--border);
}

.process-flow-item:first-child {
  padding-left: 0;
}

.process-flow-item:not(:first-child) {
  padding-left: 28px;
}

.process-flow-item:last-child {
  border-right: none;
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.process-flow-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-flow-item p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-d1 {
  transition-delay: 0.12s;
}

.reveal-d2 {
  transition-delay: 0.24s;
}

.reveal-d3 {
  transition-delay: 0.36s;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

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

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 60px;
  }

  .hero-right {
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(44px, 12vw, 72px);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .gi-full {
    grid-column: 1 / -1;
    height: 380px;
  }

  .gi {
    height: 260px;
  }

  .gi-tall {
    height: 523px; /* 260*2 + 3 */
  }

  .gi-2 {
    grid-column: 1 / -1;
    height: 260px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    aspect-ratio: 16/9;
  }

  /* Services */
  .services-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-head {
    position: static;
  }

  .svc-item {
    grid-template-columns: 28px 1fr;
  }

  .svc-desc {
    display: none;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* About strip */
  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-strip-image {
    min-height: 280px;
    order: -1;
  }

  /* Process */
  .process-flow {
    grid-template-columns: 1fr 1fr;
  }

  .process-flow-item:nth-child(2) {
    border-right: none;
  }

  .process-flow-item:nth-child(1),
  .process-flow-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
  }

  .process-flow-item:nth-child(3),
  .process-flow-item:nth-child(4) {
    padding-top: 28px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .gi,
  .gi-full,
  .gi-2,
  .gi-tall {
    grid-column: 1;
    height: 280px;
    grid-row: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .svc-item {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .hero-scroll {
    display: none;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 24px 0 !important;
  }

  .process-flow-item:last-child {
    border-bottom: none;
  }

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

  .about-strip-text {
    padding: 40px 24px;
  }
}
