﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&family=Fraunces:opsz,wght@9..144,500;9..144,700&display=swap');

:root {
  --bg: #f6f4ef;
  --bg-soft: #ece7dd;
  --text: #26332e;
  --muted: #5e6b66;
  --accent: #2f5a4c;
  --accent-soft: #d7e3dd;
  --line: #d5d1c8;
  --card: #fbfaf7;
  --max-width: 1080px;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(24, 37, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', 'Trebuchet MS', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(215, 227, 221, 0.6), transparent 33%),
    radial-gradient(circle at 85% 2%, rgba(196, 208, 202, 0.35), transparent 28%),
    var(--bg);
  line-height: 1.65;
}

.site-shell {
  min-height: 100vh;
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.brand-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font: inherit;
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.site-nav > a,
.nav-dropdown-toggle {
  text-decoration: none;
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: 180ms ease;
  display: inline-block;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--text);
  background: var(--bg-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.7rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 190px;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf7;
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

main {
  flex: 1;
  padding: 3.75rem 0 3rem;
  animation: rise 480ms ease;
}

.home-main {
  padding-top: 2.6rem;
}

.hero h1,
h1,
h2 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  margin: 0;
}

.hero {
  max-width: 760px;
}

.home-intro {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  min-height: auto;
}

.home-intro-photo {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  width: min(100%, 280px);
  aspect-ratio: 4 / 5;
}

.home-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-intro-content p {
  max-width: 58ch;
}

.intro-card {
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.88);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.65rem);
}

.intro-card .kicker {
  margin-bottom: 0.55rem;
}

.intro-card h1 {
  margin-bottom: 1rem;
}

.intro-card p {
  margin-bottom: 0.78rem;
}

.intro-card .cta-row {
  margin-top: 1.05rem;
}

.home-overview {
  position: relative;
  margin-top: 1.7rem;
}

.home-overview::before {
  content: '';
  position: absolute;
  top: -1.65rem;
  left: 0;
  width: min(220px, 30vw);
  border-top: 1px solid var(--line);
}

.home-overview .panel {
  padding: 1.4rem;
}

.home-overview .panel h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-bottom: 0.9rem;
}

.home-overview .panel p {
  margin: 0 0 0.75rem;
  color: #33423d;
}

.home-hello ul {
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
}

.home-hello li {
  margin: 0 0 0.5rem;
}

.topic-list {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.8rem;
}

.topic-item h3 {
  margin: 0 0 0.22rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
}

.topic-icon-green {
  color: #1f7a37;
}

.topic-item p {
  margin: 0;
}

.kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  margin-bottom: 1.2rem;
}

.hero p {
  max-width: 64ch;
  margin: 0 0 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button {
  display: inline-block;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f8faf9;
  text-decoration: none;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.button:hover {
  filter: brightness(1.05);
}

.button-ghost {
  background: transparent;
  color: var(--accent);
}

.panel-grid,
.card-grid {
  margin-top: 2.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.interests-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: center;
}

.interests-header {
  text-align: center;
}

.interest-main .page-header,
.interest-main .content-block,
.interest-main > p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.panel,
.interest-card,
.content-block,
.contact-form {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel,
.interest-card,
.content-block {
  padding: 1.2rem 1.25rem;
}

.interest-card {
  text-decoration: none;
  color: inherit;
}

.interest-card p,
.panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.9rem);
}

.content-block {
  max-width: 780px;
  margin: 1.2rem 0;
}

.content-block p {
  margin: 0 0 1rem;
}

.about-content p {
  max-width: 67ch;
}

.about-header,
.about-content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.about-header {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.about-content p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.wine-notes-section h2 {
  margin-bottom: 1rem;
}

.squash-notes-section h2 {
  margin-bottom: 1rem;
}

.sustainability-notes-section h2 {
  margin-bottom: 1rem;
}

.wine-intro-blurb {
  padding: 1rem 1.1rem;
  border-color: rgba(213, 209, 200, 0.78);
  background: rgba(251, 250, 247, 0.86);
}

.squash-intro-blurb {
  padding: 1rem 1.1rem;
  border-color: rgba(213, 209, 200, 0.78);
  background: rgba(251, 250, 247, 0.86);
}

.sustainability-intro-blurb {
  padding: 1rem 1.1rem;
  border-color: rgba(213, 209, 200, 0.78);
  background: rgba(251, 250, 247, 0.86);
}

.wine-lead {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
}

.squash-lead {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
}

.sustainability-lead {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
}

.wine-notes-list {
  display: grid;
  gap: 1rem;
}

.squash-notes-list {
  display: grid;
  gap: 1rem;
}

.sustainability-notes-list {
  display: grid;
  gap: 1rem;
}

.wine-note {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.squash-note {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.sustainability-note {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.wine-note-header {
  margin-bottom: 0.8rem;
}

.squash-note-header {
  margin-bottom: 0.8rem;
}

.sustainability-note-header {
  margin-bottom: 0.8rem;
}

.wine-note-header .kicker {
  margin-bottom: 0.5rem;
}

.squash-note-header .kicker {
  margin-bottom: 0.5rem;
}

.sustainability-note-header .kicker {
  margin-bottom: 0.5rem;
}

.wine-note h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.25;
  margin: 0;
}

.squash-note h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.25;
  margin: 0;
}

.sustainability-note h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.25;
  margin: 0;
}

.note-link {
  color: inherit;
  text-decoration: none;
}

.note-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.wine-note-body p {
  color: var(--muted);
}

.squash-note-body p {
  color: var(--muted);
}

.sustainability-note-body p {
  color: var(--muted);
}

.wine-note-body p:last-child {
  margin-bottom: 0;
}

.squash-note-body p:last-child {
  margin-bottom: 0;
}

.sustainability-note-body p:last-child {
  margin-bottom: 0;
}

.longform-article {
  max-width: 820px;
}

.longform-article h2 {
  margin: 1.7rem 0 0.8rem;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

.longform-article p {
  color: #33423d;
}

.longform-image-block {
  margin: 1.4rem 0 0;
}

.longform-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.longform-image-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.longform-image-block figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

.pdf-reader-block h2 {
  margin-bottom: 0.8rem;
}

.pdf-reader-block {
  max-width: 920px;
}

.pdf-mobile-note {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.pdf-embed {
  width: 100%;
  min-height: 960px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-layout {
  display: grid;
  gap: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

label {
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.text-link {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

@media (max-width: 820px) {
  .site-header {
    border-radius: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    padding-top: 0.2rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    border: 1px solid var(--line);
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    border-radius: 12px;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown-menu a {
    border: 1px solid var(--line);
    background: #fff;
  }

  .home-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    min-height: auto;
  }

  .home-intro-photo {
    max-width: 300px;
    margin: 0 auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .intro-card {
    padding: 1rem;
  }

  .home-hello p {
    line-height: 1.72;
  }

  .home-hello ul {
    padding-left: 1.05rem;
  }

  .about-content {
    padding: 1rem;
  }

  .about-header {
    padding-left: 0;
    padding-right: 0;
  }

  .about-content p {
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 1.1rem;
    text-wrap: pretty;
  }

  main {
    padding-top: 2.4rem;
  }

  .home-main {
    padding-top: 2.2rem;
  }

  .longform-image-row {
    grid-template-columns: 1fr;
  }

  .pdf-embed {
    display: none;
  }
}
