:root {
  --evergreen: #1B4332;
  --sage: #74A57F;
  --gold: #F4B942;
  --cream: #F8F6F1;
  --charcoal: #2B2D2F;
  --dark-navy: #0B1B15;
  /* Realigned with green brand theme */
  --dark-navy-2: #10261E;
  /* Realigned with green brand theme */
  --white: #FFFFFF;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Centering Layout Containers on Desktop */
.hero-inner,
.story-inner,
.component-cards,
.services-header,
.services-grid,
.gallery-cards,
.process-steps,
.contact-grid,
.nav-inner,
.footer-inner {
  margin-left: auto;
  margin-right: auto;
}

/* ─── TYPOGRAPHY ─── */
.display,
.nav-logo-text,
.hero-title,
.stat-num,
.hero-image-badge .badge-num,
.story-title,
.section-title-lg,
.services-title,
.service-card h3,
.gallery-title,
.gallery-card-brand,
.process-title,
.step-circle-num,
.step h4,
.contact-title,
.contact-side h3,
.footer-logo {
  font-family: 'Rigton', 'Fraunces', serif;
}

.display {
  font-optical-sizing: auto;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(43, 45, 47, 0.08);
  display: flex;
  align-items: center;
  padding: 0 6vw;
  height: 68px;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--evergreen);
  cursor: pointer;
  padding: 6px;
  z-index: 210;
  transition: color 0.2s;
}

.nav-toggle svg {
  display: block;
}

.nav-toggle line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active .line-top {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .line-mid {
  opacity: 0;
}

.nav-toggle.active .line-bot {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  z-index: 210;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--evergreen);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(43, 45, 47, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  background: var(--evergreen) !important;
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #153829 !important;
}

/* ─── HERO ─── */
#hero {
  background: var(--evergreen);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-bg-circle {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(116, 165, 127, 0.15);
  pointer-events: none;
}

.hero-bg-circle::before {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(116, 165, 127, 0.1);
}

.hero-bg-circle::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(116, 165, 127, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.08s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.65);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.24s ease both;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(244, 185, 66, 0.35);
}

.btn-gold:hover {
  background: #e8ad36;
  transform: translateY(-1px);
}

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(248, 246, 241, 0.25);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-cream:hover {
  border-color: rgba(248, 246, 241, 0.5);
  background: rgba(248, 246, 241, 0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(116, 165, 127, 0.2);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(248, 246, 241, 0.5);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-image-wrap {
  position: relative;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: brightness(0.95);
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.hero-image-badge .badge-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--evergreen);
  line-height: 1;
}

.hero-image-badge .badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sage);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

/* ─── SHARED SECTION ─── */
section {
  padding: 100px 6vw;
  scroll-margin-top: 80px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ─── OUR STORY ─── */
#story {
  background: var(--cream);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

@media(max-width:900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.story-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.story-body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(43, 45, 47, 0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

/* ─── COMPONENTS / NO COMPROMISES ─── */
#components {
  background: var(--cream);
  border-top: 1px solid rgba(43, 45, 47, 0.07);
}

.components-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-title-lg {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(43, 45, 47, 0.6);
  line-height: 1.7;
}

.component-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
}

@media(max-width:1000px) {
  .component-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:580px) {
  .component-cards {
    grid-template-columns: 1fr;
  }
}

.component-card {
  background: var(--white);
  border: 1px solid rgba(43, 45, 47, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.component-card:hover {
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
  transform: translateY(-3px);
}

.comp-icon {
  width: 44px;
  height: 44px;
  background: rgba(244, 185, 66, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.comp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.comp-category {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.comp-brand {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.comp-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(43, 45, 47, 0.65);
  line-height: 1.65;
}

.comp-features {
  list-style: none;
  margin-top: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(43, 45, 47, 0.75);
  font-weight: 400;
}

.comp-features svg {
  flex-shrink: 0;
  color: var(--evergreen);
}

/* ─── SERVICES ─── */
#services {
  background: var(--evergreen);
  position: relative;
  overflow: hidden;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
  max-width: 1200px;
}

@media(max-width:768px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.services-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.services-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.55);
  line-height: 1.7;
  padding-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
}

@media(max-width:900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(116, 165, 127, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(116, 165, 127, 0.4);
}

.service-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* Typography adjustment for dark background readability */
.service-card p {
  font-size: 16px;
  font-weight: 300;
  color: #F3F4F6;
  line-height: 1.6;
}

/* ─── PRODUCT GALLERY ─── */
#gallery {
  background: var(--cream);
  border-top: 1px solid rgba(43, 45, 47, 0.07);
}

.gallery-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.gallery-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 14px;
}

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

@media(max-width:900px) {
  .gallery-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .gallery-cards {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  background: var(--white);
  border: 1px solid rgba(43, 45, 47, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.gallery-card:hover {
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
  transform: translateY(-4px);
}

.gallery-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-card-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.04);
}

.gallery-card-body {
  padding: 22px 22px 24px;
}

.gallery-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.gallery-card-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(43, 45, 47, 0.62);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
#process {
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 1;
}

.process-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.process-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

@media(max-width:900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px 0;
  }
}

@media(max-width:500px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Horizontal connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: rgba(116, 165, 127, 0.25);
  z-index: 0;
}

@media(max-width:900px) {
  .process-steps::before {
    display: none;
  }
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(116, 165, 127, 0.4);
  background: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-circle-num {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.65;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--cream);
  border-top: 1px solid rgba(43, 45, 47, 0.07);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.contact-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(43, 45, 47, 0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(43, 45, 47, 0.6);
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid rgba(43, 45, 47, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(43, 45, 47, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--evergreen);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

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

@media(max-width:500px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--evergreen);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.25);
}

.btn-submit:hover {
  background: #153829;
  transform: translateY(-1px);
}

.contact-side h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-dot {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-dot svg {
  width: 15px;
  height: 15px;
  stroke: var(--evergreen);
  fill: none;
  stroke-width: 1.8;
}

.info-label {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sage);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}

.info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.info-value a:hover {
  color: var(--evergreen);
  text-decoration: underline;
}

.info-value small {
  display: block;
  font-size: 0.78rem;
  color: rgba(43, 45, 47, 0.5);
  margin-top: 1px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(43, 45, 47, 0.08);
  margin: 24px 0;
}

.founder-note {
  background: var(--white);
  border: 1px solid rgba(43, 45, 47, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 18px 20px;
}

.founder-note p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(43, 45, 47, 0.7);
  line-height: 1.7;
}

.founder-note strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* ─── FOOTER ─── */
footer {
  background: var(--evergreen);
  padding: 40px 6vw;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo-brand {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.footer-logo-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(248, 246, 241, 0.4);
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.contact-map {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(43, 45, 47, 0.08);
  display: block;
  line-height: 0;
}

/* ─── MOBILE RESPONSIVENESS ─── */

@media (max-width: 768px) {

  /* Reduce padding on mobile to optimize screen real estate */
  section {
    padding: 60px 6vw;
  }

  /* Reduce navbar horizontal padding for smaller screens */
  nav {
    padding: 0 4vw;
  }

  /* Hamburger Menu Button display */
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 215;
  }

  /* Close Button Default State (Hidden on desktop) */
  .close-menu-btn {
    display: none;
  }

  /* Mobile menu navigation drawer - Immersive full screen and static full view */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 246, 241, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 199;
    overflow: hidden;
    display: flex;
    /* Enforce flex layout on mobile */
  }

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

  /* Close Button Mobile State */
  .close-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--evergreen);
    font-size: 3rem;
    font-weight: 200;
    cursor: pointer;
    width: 48px;
    height: 48px;
    transition: transform 0.25s, color 0.25s;
    z-index: 215;
  }

  .close-menu-btn:hover {
    color: var(--gold);
    transform: scale(1.08);
  }

  .nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .nav-cta {
    width: 80%;
    text-align: center;
    padding: 12px 24px;
  }

  /* Prevent overlapping badge from spilling out of boundaries */
  .hero-image-badge {
    left: 10px;
    bottom: 10px;
  }

  /* Footer stack alignment */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media (max-width: 480px) {

  /* Scale down header items on narrow screens to prevent wrapping/overlaps */
  nav {
    padding: 0 16px;
  }

  .nav-logo-img {
    height: 35px;
  }

  .nav-logo-text {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .nav-logo-text span {
    font-size: 0.65rem;
  }

  /* Hero button actions stacked on small phone sizes to prevent overlaps */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-cream {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* Hero stats optimization for narrow viewport grid */
  .hero-stats {
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
  }

  .hero-stats>div {
    flex: 1 1 40%;
  }

  .stat-num {
    font-size: 2rem;
  }
}

/* ─── BACK TO TOP BUTTON ─── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.2s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #e8ad36;
}

/* ─── GOOGLE PHOTOS STYLE LIGHTBOX ─── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 20, 16, 0.98);
  /* Very dark evergreen brand theme */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-img-container {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img-container {
  transform: scale(1) translateY(0);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: zoom-out;
  user-select: none;
}

/* Header overlay containing close button and title */
.lightbox-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1020;
}

.lightbox-title {
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background-color 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Nav Control Buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--cream);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s, transform 0.25s;
  z-index: 1010;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Footer info/counter */
.lightbox-footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1020;
}

.lightbox-counter {
  background: rgba(0, 0, 0, 0.6);
  color: rgba(248, 246, 241, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 20px;
  }

  .lightbox-header {
    padding: 0 20px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-img-container {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-img {
    max-height: 70vh;
  }
}

/* ─── UTILITY CLASSES ─── */
.hidden {
  display: none !important;
}