:root {
  --bg: #06101a;
  --bg-deep: #03070c;
  --panel: #0b1521;
  --panel-soft: rgba(8, 17, 29, 0.82);
  --text: #f8fbff;
  --muted: #c7d0dc;
  --subtle: #8998aa;
  --line: rgba(147, 174, 210, 0.28);
  --raspberry: #e23a8a;
  --raspberry-hot: #ff4c92;
  --leaf: #a8c947;
  --sky: #65b8f1;
  --amber: #f3b35d;
  --shadow: 0 26px 84px rgba(0, 0, 0, 0.38);
  --header-offset: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(226, 58, 138, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

a:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1840px, calc(100% - 2rem));
  min-height: 72px;
  padding: 0.55rem clamp(1rem, 3vw, 2.2rem);
  background: rgba(5, 12, 21, 0.86);
  border: 1px solid rgba(147, 174, 210, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 26px rgba(226, 58, 138, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #ffffff;
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.05;
}

.brand small {
  color: rgba(231, 238, 248, 0.68);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.8rem);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  font-weight: 780;
}

.site-nav a {
  position: relative;
  padding: 0.95rem 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--raspberry), var(--leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 78svh, 820px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(147, 174, 210, 0.16);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 56%;
  filter: saturate(0.95) contrast(1.04);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.88) 0%, rgba(5, 11, 18, 0.68) 38%, rgba(5, 11, 18, 0.24) 72%, rgba(3, 7, 12, 0.44) 100%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.68), rgba(3, 7, 12, 0.12) 42%, rgba(3, 7, 12, 0.7));
}

.hero-content {
  width: min(680px, calc(100% - 2rem));
  margin-left: clamp(1rem, 6vw, 6.5rem);
  padding: calc(var(--header-offset) + 2.5rem) 0 4rem;
  animation: hero-rise 720ms ease both;
}

.eyebrow {
  margin: 0;
  color: var(--raspberry-hot);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 7.2vw, 6.6rem);
  font-weight: 880;
  line-height: 0.96;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.54);
}

.hero-copy {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 820;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button b {
  color: currentColor;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover b {
  transform: translateX(0.28rem);
}

.button-primary {
  background: linear-gradient(180deg, var(--raspberry-hot), #c92b74);
  border: 1px solid rgba(255, 158, 199, 0.72);
  box-shadow: 0 16px 42px rgba(226, 58, 138, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-ghost {
  background: rgba(8, 16, 28, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.36);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(168, 201, 71, 0.74);
  background: rgba(14, 25, 40, 0.58);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #07111d;
  border-top: 1px solid rgba(226, 58, 138, 0.24);
  border-bottom: 1px solid rgba(147, 174, 210, 0.16);
}

.quick-links a {
  display: grid;
  gap: 0.25rem;
  min-height: 8.4rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  text-decoration: none;
  border-right: 1px solid rgba(147, 174, 210, 0.14);
  transition: background 180ms ease, color 180ms ease;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover {
  background: rgba(255, 255, 255, 0.035);
}

.quick-links span,
.photo-card span,
.stand-photo figcaption {
  color: var(--raspberry-hot);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-links strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem);
  line-height: 1.12;
}

.quick-links small {
  display: block;
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.animals-section,
.stand-section,
.family-section,
.contact-section {
  padding: clamp(3.8rem, 7vw, 7rem) clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid rgba(147, 174, 210, 0.14);
}

.animals-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 201, 71, 0.12), transparent 25rem),
    linear-gradient(180deg, #07111d, #08131d);
}

.section-heading {
  max-width: 56rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.section-rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--raspberry), var(--leaf));
}

.section-heading h2,
.stand-copy h2,
.family-section h2,
.contact-section h2 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.stand-copy p,
.family-section p,
.contact-section p {
  max-width: 48rem;
  margin: 1.1rem 0 0;
  color: rgba(224, 233, 245, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(147, 174, 210, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.photo-card-large {
  grid-row: span 2;
  min-height: 39rem;
}

.photo-card img,
.stand-photo img,
.family-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 420ms ease;
}

.photo-card-large img {
  object-position: 36% 50%;
}

.photo-card:nth-child(2) img {
  object-position: 58% 18%;
}

.photo-card:nth-child(3) img {
  object-position: 82% 62%;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(3, 7, 12, 0.9));
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.photo-card strong {
  display: block;
  max-width: 34rem;
  margin-top: 0.4rem;
  color: #ffffff;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.14;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.64);
}

.stand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(226, 58, 138, 0.12), transparent 26rem),
    linear-gradient(180deg, #08131d, #070f18);
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: #ffffff;
  font-weight: 850;
  text-decoration-color: rgba(226, 58, 138, 0.7);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
}

.stand-photo,
.family-section figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 174, 210, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stand-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--panel);
}

.stand-photo img {
  object-position: 50% 72%;
  filter: saturate(0.95) contrast(1.04);
}

.stand-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.95rem 1rem;
  color: #ffffff;
  background: rgba(5, 12, 21, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-transform: none;
}

.family-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(101, 184, 241, 0.1), transparent 24rem),
    linear-gradient(180deg, #070f18, #07111d);
}

.family-section figure {
  aspect-ratio: 4 / 3;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(226, 58, 138, 0.12), transparent 44%),
    linear-gradient(180deg, #07111d, #05090f);
}

.contact-actions {
  justify-content: flex-end;
}

.farm-address {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.45;
}

.farm-address a {
  text-decoration-color: rgba(226, 58, 138, 0.58);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 6rem);
  color: rgba(255, 255, 255, 0.62);
  background: #03070c;
}

.site-footer a {
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .quick-links a,
  .photo-card,
  .stand-photo,
  .family-section > *,
  .contact-section > * {
    animation: reveal-up both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }
}

@media (max-width: 1120px) {
  .photo-grid,
  .stand-section,
  .family-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .photo-card-large {
    grid-row: auto;
    min-height: 28rem;
  }

  .stand-photo {
    max-width: 32rem;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-offset: 126px;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem 1rem;
    max-width: 19rem;
  }

  .site-nav a {
    padding: 0.18rem 0 0.42rem;
  }

  .site-nav a::after {
    bottom: 0;
  }

  .hero-content {
    width: min(620px, calc(100% - 2rem));
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(147, 174, 210, 0.14);
  }
}

@media (max-width: 680px) {
  :root {
    --header-offset: 166px;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    width: calc(100% - 1rem);
    padding: 0.75rem;
    border-radius: 14px;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 660px;
  }

  .hero-media img {
    object-position: 58% 54%;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: calc(var(--header-offset) + 1.6rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-card,
  .photo-card-large {
    min-height: 24rem;
  }

  .stand-photo {
    aspect-ratio: 1;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .site-header {
    position: absolute;
  }

  .site-nav {
    gap: 0.45rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
