:root {
  --oak: #5c3d1e;
  --bark: #241d10;
  --leaf: #5f7240;
  --sage: #9aad80;
  --cream: #f7f2ea;
  --linen: #ede6d8;
  --gold: #c49a3c;
  --sand: #d9c9a8;
  --warm-white: #fdfaf5;
  --shadow: rgba(46, 26, 9, 0.14);
   --sok-bark: #3E2C1C;
  --sok-bark-light: #5A4233;
  --sok-moss: #4A6741;
  --sok-moss-light: #5E8253;
  --sok-rust: #C4632A;
  --sok-rust-light: #D4793F;
  --sok-cream: #FAF6F0;
  --sok-cream-dark: #F0EAE0;
  --sok-gold: #C9A84C;
  --sok-text: #2D2118;
  --sok-text-light: #6B5D52;
  --sok-white: #FFFFFF;
  --sok-shadow: 0 4px 20px rgba(62, 44, 28, 0.12);
  --sok-shadow-hover: 0 8px 30px rgba(62, 44, 28, 0.2);
  --sok-radius: 12px;
  --sok-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--bark);
  font-family: "Lora", Georgia, serif;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ══ NAV ══ */
.site-header {
  background: var(--bark);
  padding: 16px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.site-brand {
  grid-column: 1;
  justify-self: start;
  font-family: "Playfair Display", serif;
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  line-height: 1.3;
}
.site-logo-center {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}
.site-nav {
  grid-column: 3;
  justify-self: end;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: none;
  animation: none;
  transition: none;
}
.site-brand span {
  display: block;
  font-size: 0.65rem;
  font-family: "Karla", sans-serif;
  color: var(--sage);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}
.site-nav a {
  color: var(--sage);
  text-decoration: none;
  font-family: "Karla", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 30px;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: var(--gold);
}
.site-nav a.active {
  color: var(--gold);
}

/* ══ HERO ══ */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.6) saturate(0.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 8, 0, 0.9) 0%,
    rgba(20, 8, 0, 0.3) 50%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 64px;
  max-width: 800px;
  animation: fadeUp 0.9s ease forwards;
}
.hero-eyebrow {
  font-family: "Karla", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  color: var(--cream);
  line-height: 1.05;
  font-weight: 400;
}
.hero-title em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  margin-top: 18px;
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  color: rgba(237, 230, 216, 0.75);
  letter-spacing: 0.02em;
  max-width: 480px;
  line-height: 1.6;
}

/* ══ WRAPPER ══ */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ══ INTRO SPLIT ══ */
.intro-section {
  padding: 96px 0 80px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.greeting {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--oak);
  line-height: 1.15;
  margin-bottom: 28px;
}
.greeting em {
  font-style: italic;
  color: var(--leaf);
}

.intro-text p {
  font-size: 1.02rem;
  color: #4a3520;
  margin-bottom: 20px;
  line-height: 1.9;
}

.pull-quote {
  background: var(--linen);
  border-left: 3px solid var(--leaf);
  padding: 26px 30px;
  border-radius: 0 3px 3px 0;
  margin: 32px 0;
}
.pull-quote p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--oak);
  line-height: 1.6;
}

/* Portrait column */
.portrait-col {
  position: relative;
}
.portrait-img {
  width: 100%;
  border-radius: 3px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 8px 14px 48px var(--shadow);
}
.portrait-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bark);
  color: var(--gold);
  font-family: "Karla", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
}

/* ══ SECTION LABEL ══ */
.section-label {
  font-family: "Karla", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  max-width: 100px;
}

/* ══ OAKLEY SECTION ══ */
.oakley-section {
  padding: 0 0 96px;
}
.oakley-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}
.oakley-img-wrap {
  position: relative;
}
.oakley-img {
  width: 100%;
  display: block;
  border-radius: 3px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 8px 14px 48px var(--shadow);
}
.oakley-name-plate {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(20, 8, 0, 0.82);
  backdrop-filter: blur(4px);
  padding: 12px 20px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.oakley-name-plate strong {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-style: italic;
  display: block;
}
.oakley-name-plate small {
  font-family: "Karla", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.oakley-text p {
  font-size: 1.02rem;
  color: #4a3520;
  margin-bottom: 20px;
  line-height: 1.9;
}
.oakley-text .big-line {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--oak);
  font-style: italic;
  line-height: 1.3;
  margin: 32px 0;
}

/* ══ PHOTO STRIP ══ */
.strip-section {
  background: var(--linen);
  padding: 80px 0;
  overflow: hidden;
}
.strip-inner {
  padding: 0 48px;
  max-width: 1120px;
  margin: 0 auto;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.strip-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.strip-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.5s ease;
}
.strip-item:hover img {
  transform: scale(1.04);
}
.strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(to top, rgba(20, 8, 0, 0.75), transparent);
  font-family: "Karla", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  transition: opacity 0.3s;
}
.strip-item:hover .strip-caption {
  opacity: 1;
}

/* ══ STORY SECTION ══ */
.story-section {
  padding: 96px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.story-text p {
  font-size: 1.02rem;
  color: #4a3520;
  margin-bottom: 22px;
  line-height: 1.9;
}
.story-img-wrap {
  position: relative;
}
.story-img {
  width: 100%;
  display: block;
  border-radius: 3px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: -8px 14px 48px var(--shadow);
}
.story-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 3px;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 4px 8px 28px var(--shadow);
  border: 4px solid var(--warm-white);
}

/* ══ VALUES ══ */
.values-section {
  background: var(--bark);
  padding: 88px 0;
}
.values-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
.values-section .section-label {
  color: var(--gold);
}
.values-section .section-label::after {
  background: var(--gold);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.value-item {
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s;
}
.value-item:last-child {
  border-right: none;
}
.value-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.value-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}
.value-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-style: italic;
}
.value-text {
  font-family: "Karla", sans-serif;
  font-size: 0.9rem;
  color: #a89878;
  line-height: 1.75;
}

/* ══ CLOSING CTA ══ */
.cta-section {
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(95, 114, 64, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-tree {
  display: block;
  margin: 0 auto 24px;
  color: var(--leaf);
}
.cta-logo-img {
  width: 150px;
  height: auto;
  filter: sepia(0.35) saturate(0.75) brightness(0.88);
  animation: none;
  transition: none;
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--oak);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-title em {
  font-style: italic;
  color: var(--leaf);
}
.cta-sub {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  color: #6a5035;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--oak);
  color: var(--cream);
  font-family: "Karla", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  margin: 0 8px;
}
.cta-btn:hover {
  background: var(--bark);
}
.cta-btn.outline {
  background: transparent;
  border: 1.5px solid var(--oak);
  color: var(--oak);
}
.cta-btn.outline:hover {
  background: var(--oak);
  color: var(--cream);
}

/* ══ FOOTER ══ */
.site-footer {
  background: var(--bark);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.footer-right {
  font-family: "Karla", sans-serif;
  font-size: 0.72rem;
  color: var(--sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

/* ══ DIVIDER ══ */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 72px;
  max-width: 280px;
  justify-content: center;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--sage);
  opacity: 0.35;
}
.divider-leaf {
  color: var(--leaf);
  font-size: 1.1rem;
}

/* ══ ANIMATION ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .site-header {
    padding: 14px 24px;
  }
  .hero-content {
    padding: 0 24px 48px;
  }
  .wrap {
    padding: 0 24px;
  }
  .intro-grid,
  .oakley-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .intro-grid .portrait-col {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }
  .oakley-grid {
    direction: initial;
  }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .photo-strip .strip-item:last-child {
    display: none;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 24px;
  }
  .footer-right {
    text-align: center;
  }
  .strip-inner {
    padding: 0 24px;
  }
  .values-inner {
    padding: 0 24px;
  }
  .story-img-accent {
    display: none;
  }
}

.sok-footer {
  background: var(--sok-bark);
  padding: 48px 20px 24px;
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.9rem;
}

.sok-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.sok-footer h4 {
  color: var(--sok-cream);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sok-footer a {
  color: rgba(250, 246, 240, 0.6);
  text-decoration: none;
  transition: color var(--sok-transition);
}

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

.sok-footer-bottom {
  max-width: 900px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  text-align: center;
  font-size: 0.82rem;
}
