@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

:root {
  --background: #f7f2ee;
  --foreground: #171412;
  --muted: #655950;
  --card: #fffaf6;
  --line: rgba(181, 124, 74, 0.24);
  --primary: #b57c4a;
  --primary-dark: #8f5b35;
  --shadow: 0 18px 60px rgba(58, 39, 24, 0.12);
  --shadow-strong: 0 24px 76px rgba(58, 39, 24, 0.18);
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.seo-page {
  overflow: hidden;
}

.seo-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.seo-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 238, 0.9);
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  backdrop-filter: blur(14px);
  animation: seoHeaderIn 0.7s ease both;
}

.seo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
}

.seo-logo {
  width: 132px;
  height: auto;
  transition: transform 0.25s ease;
}

.seo-logo:hover {
  transform: rotate(-1.5deg) scale(1.04);
}

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(23, 20, 18, 0.72);
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-nav a {
  position: relative;
  text-decoration: none;
}

.seo-nav a:hover {
  color: var(--foreground);
}

.seo-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.seo-nav a:hover::after {
  transform: scaleX(1);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  min-height: min(760px, calc(100svh - 86px));
  padding: clamp(46px, 6vw, 74px) 0;
}

.seo-hero-copy {
  max-width: 680px;
}

.seo-kicker,
.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
}

.seo-kicker::before,
.seo-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--primary);
  flex: 0 0 auto;
}

.seo-hero h1 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6.2vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.seo-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
}

.seo-hero-media {
  position: relative;
  margin: 0;
}

.seo-hero-media img {
  width: 100%;
  height: clamp(390px, 56svh, 580px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.seo-hero-media:hover img {
  box-shadow: var(--shadow-strong);
  transform: scale(1.015);
}

.seo-hero-media::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.seo-caption {
  width: min(82%, 420px);
  margin: -54px 28px 0 auto;
  position: relative;
  background: rgba(255, 250, 246, 0.94);
  border: 1px solid rgba(181, 124, 74, 0.22);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(58, 39, 24, 0.1);
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.35;
  padding: 18px 20px;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--foreground);
  color: #fffaf6;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.seo-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.seo-button.secondary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid rgba(23, 20, 18, 0.24);
}

.seo-button.secondary:hover {
  border-color: rgba(23, 20, 18, 0.46);
  background: rgba(255, 250, 246, 0.46);
}

.seo-intro {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: 64px 0 44px;
  border-top: 1px solid rgba(181, 124, 74, 0.18);
}

.seo-intro h2,
.seo-section h2,
.seo-band h2,
.seo-related h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.8vw, 3.9rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.seo-intro p,
.seo-section p,
.seo-band p,
.seo-card p,
.seo-feature p,
.seo-section li {
  color: var(--muted);
}

.seo-related p {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
}

.seo-intro p,
.seo-section p {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  line-height: 1.58;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 28px 0 58px;
}

.seo-feature {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(58, 39, 24, 0.07);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.seo-feature:hover {
  border-color: rgba(181, 124, 74, 0.42);
  box-shadow: 0 16px 46px rgba(58, 39, 24, 0.12);
  transform: translateY(-4px);
}

.seo-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.seo-feature:hover img {
  transform: scale(1.045);
}

.seo-feature-body {
  padding: 22px;
}

.seo-feature h2,
.seo-feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.seo-feature p,
.seo-band p,
.seo-list li {
  font-family: var(--font-serif);
  font-size: clamp(1.04rem, 1.35vw, 1.16rem);
  line-height: 1.5;
}

.seo-section {
  max-width: 900px;
  padding: 34px 0;
}

.seo-band {
  margin: 26px auto 48px;
  padding: clamp(26px, 4.4vw, 42px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(58, 39, 24, 0.06);
}

.seo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  padding-left: 20px;
}

.seo-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 999px;
}

.seo-related {
  padding: 18px 0 74px;
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.seo-links a {
  min-height: 100px;
  padding: 18px;
  background: rgba(255, 250, 246, 0.72);
  border: 1px solid rgba(181, 124, 74, 0.22);
  border-radius: 14px;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.seo-links a:hover {
  background: #fffaf6;
  border-color: rgba(181, 124, 74, 0.55);
  transform: translateY(-2px);
}

.seo-final {
  position: relative;
  margin: 0 auto 72px;
  padding: clamp(34px, 6vw, 58px);
  overflow: hidden;
  background: #171412;
  border-radius: 20px;
  color: #fffaf6;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.seo-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(23, 20, 18, 0.94), rgba(23, 20, 18, 0.76)), var(--final-image, none);
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.seo-final-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.seo-final h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.seo-final p {
  margin: 0;
  color: rgba(255, 250, 246, 0.8);
  font-family: var(--font-serif);
  font-size: clamp(1.16rem, 1.8vw, 1.34rem);
  font-style: italic;
  line-height: 1.35;
}

.seo-final .seo-button {
  background: #fffaf6;
  color: var(--foreground);
}

.seo-final .seo-button.secondary {
  background: transparent;
  color: #fffaf6;
  border-color: rgba(255, 250, 246, 0.34);
}

.seo-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-footer p {
  margin: 0;
}

@keyframes seoHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seoFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seoImageIn {
  from {
    opacity: 0;
    transform: scale(0.992) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .seo-kicker,
  .seo-hero h1,
  .seo-lead,
  .seo-cta,
  .seo-intro,
  .seo-band,
  .seo-related,
  .seo-final {
    animation: seoFadeUp 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .seo-kicker {
    animation-delay: 0.04s;
  }

  .seo-hero h1 {
    animation-delay: 0.11s;
  }

  .seo-lead {
    animation-delay: 0.18s;
  }

  .seo-cta {
    animation-delay: 0.25s;
  }

  .seo-hero-media {
    animation: seoImageIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
  }

  .seo-feature {
    animation: seoFadeUp 0.66s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .seo-feature:nth-child(1) {
    animation-delay: 0.08s;
  }

  .seo-feature:nth-child(2) {
    animation-delay: 0.16s;
  }

  .seo-feature:nth-child(3) {
    animation-delay: 0.24s;
  }
}

@media (max-width: 960px) {
  .seo-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0 18px;
  }

  .seo-nav {
    justify-content: flex-start;
  }

  .seo-hero,
  .seo-intro {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .seo-hero-media {
    min-height: auto;
  }

  .seo-hero-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .seo-feature-grid,
  .seo-links,
  .seo-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .seo-container {
    width: min(100% - 28px, 1180px);
  }

  .seo-logo {
    width: 112px;
  }

  .seo-nav {
    gap: 10px 14px;
    font-size: 0.95rem;
  }

  .seo-hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
    line-height: 1;
  }

  .seo-caption {
    width: calc(100% - 28px);
    margin: -34px 14px 0;
  }

  .seo-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-button {
    width: 100%;
    min-height: 50px;
    text-align: center;
  }

  .seo-intro {
    padding: 48px 0 30px;
  }

  .seo-feature-grid {
    padding-bottom: 42px;
  }

  .seo-links a {
    min-height: auto;
  }

  .seo-final {
    min-height: 300px;
    border-radius: 16px;
  }
}
