/* ==========================================================================
   Carp River Tasting Room — Hero Only (Temp)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inconsolata:wght@400;500;600;700&family=Yellowtail&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #f0e9db;
  --cream-light:  #f5f0e5;
  --cream-dark:   #f0e9db;
  --green:        #425C55;
  --green-dark:   #354b45;
  --green-light:  #5a7a72;
  --orange:       #AD5335;
  --orange-dark:  #8f4429;
  --orange-light: #c46a4e;
  --brown:        #425C55;
  --brown-light:  #5a7a72;
  --text-dark:    #2a2a28;
  --text-mid:     #555550;
  --text-light:   #5a5850;
  --rule:         rgba(42, 42, 40, 0.12);

  --font-display:  'Oswald', 'Arial Narrow', sans-serif;
  --font-body:     'Inconsolata', 'Courier New', monospace;
  --font-script:   'Yellowtail', cursive;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }

.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Layout --- */
.container {
  width: min(90%, 1100px);
  margin-inline: auto;
}

/* --- Header / Nav --- */
.site-header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(240, 233, 219, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-wrap .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  text-decoration: none;
  line-height: 0;
  margin: 0 auto;
}

.coming-soon {
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.03em;
}

/* --- Hero --- */
.hero-wrap {
  background: url('water-bg.png') center / cover no-repeat;
}

.hero-trio {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero-social {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.hero-social a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 200ms ease-out;
}

.hero-social a:hover {
  color: #fff;
}

.hero-trio-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 20px;
  margin-top: -80px;
}

.hero-trio-text {
  text-align: center;
  padding: 20px 24px;
  position: relative;
  z-index: 5;
}

.hero-trio-text h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 0.92;
  margin-bottom: 12px;
  color: #fff;
}

.hero-trio-text .label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

.hero-trio-text .divider-line {
  background: rgba(255, 255, 255, 0.5);
}

.hero-trio-text h1 .script {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  display: block;
  margin-top: 4px;
}

/* --- Decorative Dividers --- */
.divider-line {
  width: 60px;
  height: 1px;
  background: var(--text-light);
  opacity: 0.3;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-trio-text h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}

@media (max-width: 768px) {
  .site-header .container { justify-content: center; width: 100%; }
  .logo img { width: 160px !important; }
  .hero-social { bottom: 48px; }
}
