/* =============================================
   FOCAL POINT PHOTOGRAPHY — GLOBAL STYLES
   Aesthetic: Editorial / Fine Art Photography
   ============================================= */

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

:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --light: #f2f0ec;
  --mid: #d8d4cc;
  --text: #1a1816;
  --text-muted: #6b6560;
  --accent: #c8a96e;
  --accent-dark: #a8894e;
  --dark: #141210;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
  --nav-h: 72px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--mid);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-logo-img {
  width: 5em;
  height: 5em;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   ANNOUNCEMENT BANNER
   ============================================= */

.announcement {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 48px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.announcement a {
  text-decoration: underline;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.announcement a:hover { opacity: 1; }
.announcement-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.announcement-close:hover { opacity: 1; }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn-dark:hover {
  background: #3d3935;
  color: var(--white);
  border-color: #3d3935;
}
/* Inside lightbox the dark background makes text invisible — use a warm gold hover */
.lightbox .btn-dark,
.lightbox-info .btn-dark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.lightbox .btn-dark:hover,
.lightbox-info .btn-dark:hover {
  background: #dfc080;
  border-color: #dfc080;
  color: var(--text);
}
.btn-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--text);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,18,16,0.72) 0%,
    rgba(20,18,16,0.35) 60%,
    rgba(20,18,16,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  max-width: 700px;
  animation: fadeUp 1s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  max-width: 440px;
  line-height: 1.6;
}

.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   FEATURE SECTIONS
   ============================================= */

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
.feature-reverse .feature-image-wrap { order: 2; }
.feature-reverse .feature-content { order: 1; }

.feature-image-wrap {
  position: relative;
  overflow: hidden;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.feature-section:hover .feature-img {
  transform: scale(1.04);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--white);
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.best-shot-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

/* =============================================
   DUAL PHOTO SECTION
   ============================================= */

.dual-section {
  padding: 120px 80px;
  background: var(--off-white);
  text-align: center;
}
.dual-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.dual-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 64px;
  letter-spacing: 0.04em;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.dual-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.dual-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.dual-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light);
  overflow: hidden;
}
.dual-img-wrap.no-img .dual-img { display: none; }
.dual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dual-card:hover .dual-img {
  transform: scale(1.04);
}

.dual-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.dual-img-wrap:not(.no-img) .dual-img-placeholder { display: none; }
.dual-img-placeholder span { font-size: 2.5rem; }

.dual-card-info {
  padding: 28px 32px 32px;
}
.dual-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.dual-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.dual-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 100px;
}

/* =============================================
   ABOUT TEASER
   ============================================= */

.about-teaser {
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}
.about-teaser-inner {
  max-width: 680px;
  text-align: center;
}
.about-teaser h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 28px;
}
.about-teaser p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */

.page-header {
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--mid);
}
.page-header-inner {
  max-width: 800px;
}
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.header-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
}

/* =============================================
   ABOUT PAGE BODY
   ============================================= */

.about-body {
  padding: 100px 80px;
}
.about-content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 100px;
  align-items: start;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text .about-lead {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 32px;
}
.about-text strong { color: var(--text); font-weight: 500; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  padding: 36px 0;
  border-bottom: 1px solid var(--mid);
}
.pillar:first-child { border-top: 1px solid var(--mid); }
.pillar-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-filters {
  display: flex;
  gap: 0;
  padding: 48px 80px 0;
  border-bottom: 1px solid var(--mid);
}
.filter-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.gallery-grid-section {
  padding: 64px 80px 100px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
}
.gallery-item.hidden { display: none; }

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 4px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.g-category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.g-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
}
.g-price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}
.g-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.g-badge.best {
  background: var(--accent);
  color: white;
}
.g-badge.soon {
  background: var(--text);
  color: white;
}

.gallery-empty {
  text-align: center;
  padding: 80px;
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
}
.lightbox-backdrop.open { display: block; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 10;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
  padding: 0 24px;
  line-height: 1;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

.lightbox-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
}
#lightboxImg {
  max-height: 80vh;
  max-width: 70%;
  object-fit: contain;
  flex-shrink: 0;
}
.lightbox-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-width: 200px;
}
.lightbox-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lightbox-badge:empty { display: none; }
.lightbox-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
}
.lightbox-info p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.lightbox-price {
  font-size: 1.1rem !important;
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--serif);
  letter-spacing: 0.02em !important;
  margin-top: 4px;
}

/* =============================================
   POLICIES PAGE
   ============================================= */

.policy-body {
  padding: 80px;
}
.policy-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  padding-right: 40px;
  border-right: 1px solid var(--mid);
}
.policy-toc h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.policy-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.policy-toc a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  line-height: 1.4;
}
.policy-toc a:hover { color: var(--accent); }

.policy-content { padding-top: 4px; }

.policy-section {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--mid);
}
.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--text);
  line-height: 1.2;
}
.policy-section p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section a { color: var(--accent); text-decoration: underline; }

.policy-list {
  margin: 16px 0 24px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}
.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 300;
}

.policy-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  padding: 40px;
  background: var(--off-white);
  border-left: 3px solid var(--accent);
}
.step-num {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 4px;
  min-width: 52px;
}
.step-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.policy-note {
  background: var(--white);
  border: 1px solid var(--mid);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0;
}
.policy-note strong { color: var(--text); }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 80px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 5em;
  height: 5em;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-col strong { color: white; }
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .about-content-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-pillars {
    flex-direction: row;
  }
  .pillar {
    flex: 1;
    padding: 24px;
    border-bottom: none;
    border-right: 1px solid var(--mid);
  }
  .pillar:last-child { border-right: none; }
  .pillar:first-child { border-top: none; }

  .policy-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .policy-toc {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--mid);
    padding-right: 0;
    padding-bottom: 32px;
  }
  .policy-toc ul { flex-direction: row; flex-wrap: wrap; gap: 10px 24px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .nav { padding: 0 24px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--mid);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open {
    max-height: 300px;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 0.85rem;
  }
  .nav-links a::after { display: none; }

  .hero-content { padding: calc(var(--nav-h) + 60px) 32px 60px; }
  .hero-scroll { left: 32px; }

  .announcement { padding: 10px 48px 10px 16px; text-align: center; }

  .feature-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feature-image-wrap { aspect-ratio: 16/9; order: 0 !important; }
  .feature-content { order: 1 !important; padding: 48px 32px; }
  .feature-reverse .feature-image-wrap { order: 0 !important; }
  .feature-reverse .feature-content { order: 1 !important; }

  .dual-section { padding: 80px 32px; }
  .dual-grid { grid-template-columns: 1fr; max-width: 500px; }

  .about-teaser { padding: 80px 32px; }

  .page-header { padding: calc(var(--nav-h) + 48px) 32px 48px; }
  .about-body { padding: 64px 32px; }
  .about-pillars { flex-direction: column; }
  .pillar { border-right: none !important; border-top: 1px solid var(--mid) !important; padding: 28px 0 !important; }

  .gallery-filters { padding: 32px 24px 0; flex-wrap: wrap; }
  .gallery-grid-section { padding: 40px 24px 80px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

  .lightbox-content { flex-direction: column; max-height: 90vh; overflow-y: auto; }
  #lightboxImg { max-width: 100%; max-height: 55vh; }
  .lightbox { padding: 24px; }

  .policy-body { padding: 48px 24px; }
  .policy-step { flex-direction: column; gap: 16px; padding: 28px; }

  .footer { padding: 64px 32px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
