/* ═══════════════════════════════════════════════════════
   SHUBHAM NATURE FRAMES — style.css
   Dark luxury editorial aesthetic
   ═══════════════════════════════════════════════════════ */

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

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

:root {
  --bg:        #080808;
  --bg2:       #101010;
  --bg3:       #161616;
  --text:      #f0ece5;
  --muted:     #7a7870;
  --faint:     #2a2a27;
  --accent:    #89a878;   /* sage green — nature */
  --silver:    #b8b0a0;   /* warm silver — matches logo */
  --border:    rgba(255,255,255,0.07);
  --border-h:  rgba(137,168,120,0.35);
  --nav-h:     76px;
  --full-border: 10px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ════════════════════════════════════════════════════════
   FULL-BORDER FRAME (site-wide)
   ════════════════════════════════════════════════════════ */
body::before, body::after,
body > .frame-h { display: none; } /* overridden per-page via .has-frame */

.has-frame::before,
.has-frame::after {
  content: '';
  position: fixed;
  background: var(--bg);
  z-index: 500;
}
.has-frame::before { top:0; left:0; right:0; height: var(--full-border); }
.has-frame::after  { bottom:0; left:0; right:0; height: var(--full-border); }
.frame-side {
  position: fixed;
  top: 0; bottom: 0;
  width: var(--full-border);
  background: var(--bg);
  z-index: 500;
}
.frame-side.left  { left: 0; }
.frame-side.right { right: 0; }

/* ════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: var(--full-border);
  left: var(--full-border);
  right: var(--full-border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 400;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.solid {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.05);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: 'Cormorant Garant', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-text .sub {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-top: 4px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 550;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.mobile-overlay.is-open { display: flex; }
.mobile-overlay a {
  font-family: 'Cormorant Garant', serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-overlay a:hover,
.mobile-overlay a.active { color: var(--accent); }
.mobile-overlay-logo {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
.mobile-overlay-logo img { height: 40px; }

/* ════════════════════════════════════════════════════════
   PAGE INTRO (top padding offset for fixed nav)
   ════════════════════════════════════════════════════════ */
.page-top-offset {
  padding-top: calc(var(--full-border) + var(--nav-h));
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--full-border) * 2 + var(--nav-h)) 60px 80px;
}

/* Slide track */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05);
  animation: hzoom 9s ease-out forwards;
}
.hero-slide.is-active { opacity: 1; }
@keyframes hzoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.25) 50%, rgba(8,8,8,0.1) 100%),
    linear-gradient(to right, rgba(8,8,8,0.4) 0%, transparent 60%);
}
.hero-body {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(50px, 8vw, 96px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 400px;
  margin-bottom: 44px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 15px 32px;
  transition: border-color 0.3s, background 0.3s, gap 0.25s;
  text-decoration: none;
  background: none;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(137,168,120,0.08);
  gap: 18px;
}
.btn-ghost .arrow { font-size: 16px; transition: transform 0.25s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 15px 32px;
  transition: background 0.25s, gap 0.25s;
  text-decoration: none;
}
.btn-solid:hover {
  background: #9dbe8c;
  gap: 18px;
}

/* Hero side indicators */
.hero-pips {
  position: absolute;
  right: 60px;
  bottom: 84px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-pip {
  width: 2px;
  background: rgba(255,255,255,0.18);
  border: none;
  transition: all 0.3s;
  cursor: pointer;
  height: 28px;
}
.hero-pip.is-active {
  background: var(--accent);
  height: 42px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}

/* ════════════════════════════════════════════════════════
   SECTION SHARED UTILS
   ════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.link-underline {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--faint);
  padding-bottom: 5px;
  transition: color 0.25s, border-color 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.link-underline:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ════════════════════════════════════════════════════════
   HOME — Featured Grid
   ════════════════════════════════════════════════════════ */
.section-featured { padding: 100px 60px; }

.feat-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 360px 260px;
  gap: 10px;
}
.feat-item { position: relative; overflow: hidden; cursor: pointer; }
.feat-item:first-child { grid-row: 1 / 3; }
.feat-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.feat-item:hover img { transform: scale(1.07); }
.feat-item-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-item:hover .feat-item-veil { opacity: 1; }
.feat-item-meta {
  position: absolute;
  bottom: 22px; left: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.feat-item:hover .feat-item-meta { opacity: 1; transform: none; }
.feat-item-meta .cat {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.feat-item-meta h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════
   HOME — Stats Strip
   ════════════════════════════════════════════════════════ */
.section-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 52px 0;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  top: 30%; bottom: 30%;
  left: 0;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════
   HOME — Services
   ════════════════════════════════════════════════════════ */
.section-services { padding: 100px 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.service-card {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.service-card:last-child { border-right: none; }
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.service-card:hover { background: var(--bg2); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 52px;
  color: rgba(255,255,255,0.03);
  font-weight: 300;
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  pointer-events: none;
}
.service-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 28px;
  transition: border-color 0.3s;
}
.service-card:hover .service-icon { border-color: var(--accent); }
.service-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 16px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

/* ════════════════════════════════════════════════════════
   HOME — Recent from Blog (teaser)
   ════════════════════════════════════════════════════════ */
.section-blog-teaser { padding: 100px 60px; background: var(--bg2); }
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 56px;
}
.blog-teaser-card {
  padding: 36px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.blog-teaser-card:last-child { border-right: none; }
.blog-teaser-card:hover { background: var(--bg3); }
.blog-tc-meta {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 14px;
}
.blog-tc-cat {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.blog-tc-date {
  font-size: 11.5px;
  color: var(--muted);
}
.blog-teaser-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-teaser-card:hover h3 { color: var(--accent); }
.blog-teaser-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.85;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-top: 18px;
  transition: color 0.2s, gap 0.2s;
  text-decoration: none;
}
.blog-read:hover { color: var(--accent); gap: 14px; }
.blog-read::after { content: '→'; }

/* ════════════════════════════════════════════════════════
   GALLERY PAGE
   ════════════════════════════════════════════════════════ */
.gallery-page-header {
  padding: calc(var(--full-border) + var(--nav-h) + 70px) 60px 56px;
  text-align: center;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 60px 56px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  padding: 11px 28px;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  position: relative; z-index: 1;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(137,168,120,0.08);
  z-index: 2;
}

.gallery-masonry {
  columns: 3;
  column-gap: 10px;
  padding: 0 60px 100px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item-veil {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.52);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.gal-item:hover .gal-item-veil { opacity: 1; }
.gal-zoom-ring {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transform: scale(0.65);
  transition: transform 0.35s, border-color 0.3s;
}
.gal-item:hover .gal-zoom-ring {
  transform: scale(1);
  border-color: var(--accent);
  color: var(--accent);
}
.gal-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(8,8,8,0.7));
  transform: translateY(100%);
  transition: transform 0.35s;
}
.gal-item:hover .gal-item-label { transform: none; }
.gal-item-label span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.gal-item-label p {
  font-family: 'Cormorant Garant', serif;
  font-size: 15px;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(4,4,4,0.97);
  z-index: 9000;
  align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lb-img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain;
  animation: lbIn 0.3s ease;
}
@keyframes lbIn { from { opacity:0; transform: scale(0.97); } to { opacity:1; transform: scale(1); } }
.lb-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: none;
  color: var(--text); font-size: 28px; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--accent); }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: border-color 0.2s, color 0.2s;
}
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-nav:hover { border-color: var(--accent); color: var(--accent); }
.lb-caption {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  text-align: center;
}
.lb-caption span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.lb-caption p {
  font-family: 'Cormorant Garant', serif;
  font-size: 18px; font-weight: 300;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h) - var(--full-border));
}
.about-split-img {
  position: relative;
  overflow: hidden;
}
.about-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-split-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--bg) 100%);
}
.about-split-body {
  padding: 80px 68px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-split-body h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 32px;
}
.about-body-text {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 22px;
}
.about-signature {
  font-family: 'Cormorant Garant', serif;
  font-size: 46px;
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  opacity: 0.75;
  margin: 36px 0 42px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 9px 20px;
  transition: color 0.25s, border-color 0.25s;
}
.about-tag:hover { color: var(--accent); border-color: var(--border-h); }

/* About: philosophy quotes */
.about-quotes { padding: 80px 60px; background: var(--bg2); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 52px;
}
.quote-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.quote-card:last-child { border-right: none; }
.quote-mark {
  font-family: 'Cormorant Garant', serif;
  font-size: 72px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 24px;
  font-weight: 300;
}
.quote-text {
  font-family: 'Cormorant Garant', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}
.quote-author {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 20px;
}

/* About: timeline */
.about-timeline { padding: 80px 60px 100px; }
.timeline-container { max-width: 820px; margin: 60px auto 0; }
.tl-item {
  display: grid;
  grid-template-columns: 120px 1px 1fr;
  gap: 0 36px;
  margin-bottom: 0;
}
.tl-item:not(:last-child) .tl-line { position: relative; }
.tl-item:not(:last-child) .tl-line::before {
  content: '';
  position: absolute;
  top: 24px; bottom: -40px; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--faint));
}
.tl-year {
  font-family: 'Cormorant Garant', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--accent);
  text-align: right;
  padding-top: 4px;
}
.tl-line { position: relative; }
.tl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  outline: 1px solid var(--accent);
  position: absolute;
  top: 10px; left: -3.5px;
}
.tl-content { padding: 0 0 56px; }
.tl-content h4 {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px; font-weight: 300;
  margin-bottom: 10px;
}
.tl-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

/* ════════════════════════════════════════════════════════
   BLOG PAGE
   ════════════════════════════════════════════════════════ */
.blog-page-header {
  padding: calc(var(--full-border) + var(--nav-h) + 70px) 60px 60px;
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  padding: 0 60px 100px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.blog-card { border-bottom: 1px solid var(--border); }
.blog-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px 28px 36px; border-right: 1px solid var(--border); }
.blog-card:nth-child(3n) .blog-card-body { border-right: none; }
.blog-card-meta {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 14px;
}
.bc-cat {
  font-size: 9.5px; letter-spacing: 0.26em;
  text-transform: uppercase; font-weight: 600;
  color: var(--accent);
}
.bc-date { font-size: 11.5px; color: var(--muted); }
.blog-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px; font-weight: 300; line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--accent); }
.blog-card p {
  font-size: 13px; color: var(--muted); line-height: 1.85;
}
.blog-read-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  color: var(--muted); margin-top: 18px;
  transition: color 0.2s, gap 0.2s; text-decoration: none;
}
.blog-card:hover .blog-read-link { color: var(--accent); gap: 14px; }
.blog-read-link::after { content: '→'; }

/* ════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h) - var(--full-border));
}
.contact-info {
  background: var(--bg2);
  padding: 80px 68px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.contact-info h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(38px,4vw,58px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 28px;
}
.contact-info > p {
  font-size: 13.5px; color: var(--muted); line-height: 1.9;
  margin-bottom: 52px;
}
.contact-items { display: flex; flex-direction: column; gap: 26px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
}
.ci-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 2px;
  color: var(--accent);
}
.ci-label {
  display: block;
  font-size: 9.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500; margin-bottom: 5px;
}
.ci-value { font-size: 14px; color: var(--text); }
.contact-socials {
  display: flex; gap: 10px; margin-top: 52px;
}
.soc-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted);
  text-decoration: none;
  transition: all 0.25s;
  font-weight: 500;
}
.soc-btn:hover { border-color: var(--accent); color: var(--accent); }

.contact-form-wrap { padding: 80px 68px; display: flex; flex-direction: column; justify-content: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: var(--muted); margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 13px 18px; outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none; border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent); background: var(--bg3);
}
.form-group textarea { height: 148px; resize: vertical; }
.form-group select option { background: #111; color: var(--text); }
.form-success {
  display: none; padding: 18px 22px;
  border: 1px solid var(--accent);
  background: rgba(137,168,120,0.07);
  font-size: 13px; color: var(--accent);
  letter-spacing: 0.06em; margin-top: 20px;
}
.form-success.show { display: block; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 36px; width: auto; opacity: 0.85; }
.footer-logo .brand {
  font-family: 'Cormorant Garant', serif;
  font-size: 15px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 300;
  color: var(--silver);
}
.footer-copy { font-size: 11.5px; color: var(--muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ════════════════════════════════════════════════════════
   PAGE TRANSITIONS
   ════════════════════════════════════════════════════════ */
.page-fade { animation: pgIn 0.45s ease; }
@keyframes pgIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --full-border: 6px; }
  .feat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .feat-item:first-child { grid-row: auto; grid-column: 1/-1; aspect-ratio: 16/9; }
  .services-grid, .quotes-grid, .blog-teaser-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { border-right: none !important; }
  .about-split, .contact-split { grid-template-columns: 1fr; }
  .about-split-img { height: 58vw; }
  .about-split-img::after { display: none; }
}
@media (max-width: 768px) {
  :root { --full-border: 5px; }
  .site-nav { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 0 24px 72px; }
  .hero-pips, .hero-scroll-cue { display: none; }
  .hero-title { font-size: clamp(38px,10vw,60px); }
  .section-featured, .section-stats, .section-services,
  .section-blog-teaser, .gallery-masonry, .gallery-filters,
  .blog-grid, .blog-page-header, .gallery-page-header,
  .about-split-body, .contact-info, .contact-form-wrap,
  .about-quotes, .about-timeline, .site-footer { padding-left: 22px; padding-right: 22px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-masonry { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .section-stats { padding-left: 22px; padding-right: 22px; grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .tl-item { grid-template-columns: 80px 1px 1fr; gap: 0 20px; }
  .tl-year { font-size: 26px; }
}
@media (max-width: 520px) {
  .gallery-masonry { columns: 1; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-desc { display: none; }
  .timeline-container { padding: 0; }
}
