:root {
  --gold: #c8a15d;
  --ink: #0d0a08;
  --scroll-offset: 0px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
}

a { color: inherit; }

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow-x: hidden;
}

.background, .veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background {
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(13,10,8,.93) 0%, rgba(13,10,8,.72) 38%, rgba(13,10,8,.18) 74%),
    linear-gradient(180deg, rgba(13,10,8,.16), rgba(13,10,8,.5)),
    url("assets/vineyard.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(.82) brightness(.75);
  animation: slow-zoom 38s ease-in-out infinite alternate;
  transform: scale(1.001);
}

.veil {
  z-index: -1;
  background: radial-gradient(circle at 50% 42%, transparent 30%, rgba(0,0,0,.17) 100%);
  box-shadow: inset 0 0 190px rgba(0,0,0,.44);
}

.copy-layer {
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  transform: translate3d(0, var(--scroll-offset), 0);
  will-change: transform;
}

.hero {
  display: flex;
  width: min(100%, 66rem);
  margin: 0 auto;
  padding: clamp(1rem, 2.3vh, 2rem) clamp(1.25rem, 4vw, 3.5rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fade-in 1.1s ease both;
}

.brand-block { display: flex; flex-direction: column; align-items: center; }

h1 {
  margin: 0;
  padding-left: .18em;
  color: var(--gold);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(6rem, 13.4vw, 11.2rem);
  font-stretch: condensed;
  font-weight: 200;
  letter-spacing: .18em;
  line-height: .82;
  opacity: .78;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.subtitle {
  margin: clamp(.8rem, 1.7vh, 1.25rem) 0 0;
  padding-left: .27em;
  color: var(--gold);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.85rem);
  font-weight: 300;
  letter-spacing: .27em;
  line-height: 1;
  text-transform: uppercase;
}

.ornament {
  display: flex;
  width: min(100%, 31rem);
  margin: clamp(1.7rem, 4vh, 2.7rem) 0;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.15rem);
}

.ornament span { height: 1px; flex: 1; background: rgba(200,161,93,.9); }
.ornament i { width: .7rem; height: .7rem; border: 1.5px solid var(--gold); transform: rotate(45deg); }

.claim {
  margin: 0;
  color: var(--gold);
  font-size: clamp(.9rem, 1.3vw, 1.08rem);
  font-weight: 300;
  letter-spacing: .012em;
  line-height: 1.78;
  text-wrap: balance;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}

.contact-links {
  display: flex;
  margin-top: clamp(2rem, 5vh, 3.45rem);
  align-items: center;
  gap: clamp(2.4rem, 5vw, 4.2rem);
}

.contact-links a {
  display: flex;
  min-width: 13.8rem;
  flex-direction: column;
  align-items: center;
  color: var(--gold);
  font-size: .96rem;
  letter-spacing: .025em;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-links a:hover, .contact-links a:focus-visible { color: #dec084; transform: translateY(-2px); }
.contact-icon { width: 2.45rem; height: 2.45rem; margin-bottom: .7rem; color: currentColor; }
.instagram-icon { width: 2.55rem; height: 2.55rem; }
.separator { width: 1px; height: 5.6rem; background: rgba(200,161,93,.66); }

footer {
  display: flex;
  padding: .6rem 1.5rem clamp(1.2rem, 2.5vw, 1.65rem);
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--gold);
  font-size: .72rem;
  text-align: center;
}

footer a { text-decoration: none; }
footer a:hover, footer a:focus-visible { text-decoration: underline; text-underline-offset: .22em; }
a:focus-visible { border-radius: 2px; outline: 1px solid var(--gold); outline-offset: 6px; }

.legal-shell {
  min-height: 100svh;
  padding: clamp(1.25rem, 4vw, 3.5rem);
  background:
    linear-gradient(rgba(13,10,8,.9), rgba(13,10,8,.96)),
    url("assets/vineyard.jpg") center / cover fixed;
}

.legal-card {
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(200,161,93,.4);
  background: rgba(13,10,8,.72);
  backdrop-filter: blur(10px);
}

.legal-card h1 { padding: 0; font-size: clamp(2.2rem, 7vw, 4.6rem); letter-spacing: .08em; line-height: 1.05; opacity: .88; }
.legal-card h2 { margin: 2rem 0 .6rem; font-size: 1.05rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.legal-card p, .legal-card li { font-size: .92rem; font-weight: 300; line-height: 1.75; }
.legal-card ul { padding-left: 1.2rem; }
.legal-card a { text-decoration-color: rgba(200,161,93,.6); text-underline-offset: .2em; }
.legal-back { display: inline-block; margin-bottom: 2rem; font-size: .78rem; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.legal-updated { margin-top: 2.5rem; opacity: .72; }

.legal-details { margin: 1.5rem 0 0; }
.legal-details div { display: grid; padding: .9rem 0; border-bottom: 1px solid rgba(200,161,93,.22); grid-template-columns: minmax(8rem,.72fr) 2fr; gap: 1rem; }
.legal-details dt, .legal-details dd { margin: 0; font-size: .92rem; line-height: 1.65; }
.legal-details dt { font-weight: 450; letter-spacing: .05em; text-transform: uppercase; }
.legal-details dd { font-weight: 300; }

@keyframes slow-zoom { from { transform: scale(1.001); } to { transform: scale(1.035); } }
@keyframes fade-in { from { opacity: 0; transform: translateY(.75rem); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 700px) {
  .site-shell, .copy-layer { min-height: 112svh; }
  .background {
    background-image:
      linear-gradient(180deg, rgba(13,10,8,.55), rgba(13,10,8,.39) 35%, rgba(13,10,8,.72)),
      linear-gradient(90deg, rgba(13,10,8,.51), rgba(13,10,8,.16)),
      url("assets/vineyard.jpg");
    background-position: 67% center;
    filter: saturate(.76) brightness(.69);
  }
  .veil { box-shadow: inset 0 0 100px rgba(0,0,0,.45); }
  .hero { padding: clamp(3.2rem, 9vh, 5rem) 1.25rem 2.5rem; }
  h1 { padding-left: .11em; font-size: clamp(3.6rem, 20vw, 5.35rem); letter-spacing: .105em; }
  .subtitle { font-size: clamp(.78rem, 4vw, 1.05rem); letter-spacing: .22em; }
  .ornament { width: min(82vw, 19rem); margin: 1.7rem 0; }
  .claim { max-width: 23rem; font-size: .86rem; line-height: 1.7; }
  .claim br { display: none; }
  .contact-links { width: min(100%, 18rem); margin-top: 2rem; flex-direction: column; gap: 1.1rem; }
  .contact-links a { min-width: 0; font-size: .9rem; }
  .contact-icon, .instagram-icon { width: 2rem; height: 2rem; margin-bottom: .4rem; }
  .separator { width: 7.5rem; height: 1px; }
  footer { flex-wrap: wrap; padding-bottom: max(1rem, env(safe-area-inset-bottom)); font-size: .66rem; line-height: 1.5; }
}

@media (max-width: 560px) {
  .legal-details div { grid-template-columns: 1fr; gap: .25rem; }
}

@media (max-height: 740px) and (min-width: 701px) {
  .hero { padding-top: .5rem; padding-bottom: .5rem; }
  h1 { font-size: clamp(5.4rem, 11vw, 8rem); }
  .ornament { margin: 1.4rem 0; }
  .contact-links { margin-top: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .background, .hero { animation: none; }
  .copy-layer { transform: none; }
}
