/* ═══════════════════════════════════════
   VINEYARD VELLO
   ═══════════════════════════════════════ */

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

/* TOKENS */
:root {
  --cream:        #F2E8D5;
  --cream-dark:   #E9DBC4;
  --warm-black:   #1E1208;
  --amber:        #B87240;
  --amber-light:  #D09050;
  --dusty-blue:   #7A96A2;
  --sand:         #C99560;
  --mid:          #7A5C3A;
  --text:         #2C1C0C;
  --text-light:   #7A6050;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:  68px;
  --max-w:  1180px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* UTILITIES */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-black);
  margin-bottom: 3rem;
}

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

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  background: transparent;
  font-family: var(--sans);
}
.btn-outline-light {
  color: var(--cream);
  border-color: rgba(242,232,213,0.65);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--warm-black);
  border-color: var(--cream);
}
.btn-dark {
  color: var(--cream);
  background: var(--warm-black);
  border-color: var(--warm-black);
}
.btn-dark:hover {
  background: var(--amber);
  border-color: var(--amber);
}
.btn-full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(30,18,8,0.09);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
#nav.scrolled .nav-logo { color: var(--warm-black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242,232,213,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
#nav.scrolled .nav-links a { color: var(--text-light); }
#nav.scrolled .nav-links a:hover { color: var(--warm-black); }

.nav-cta {
  padding: 0.45rem 1.2rem !important;
  border: 1px solid rgba(242,232,213,0.45) !important;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}
.nav-cta:hover {
  background: var(--cream) !important;
  color: var(--warm-black) !important;
  border-color: var(--cream) !important;
}
#nav.scrolled .nav-cta {
  border-color: var(--amber) !important;
  color: var(--amber) !important;
}
#nav.scrolled .nav-cta:hover {
  background: var(--amber) !important;
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
#nav.scrolled .nav-toggle span { background: var(--warm-black); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 1.75rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
  z-index: 99;
  border-bottom: 1px solid var(--cream-dark);
}
#nav-drawer.open { transform: translateY(0); }
#nav-drawer a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-black);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3.5rem, 9vh, 6rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,18,8,0.12) 0%,
    rgba(30,18,8,0.18) 35%,
    rgba(30,18,8,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.hero-content .eyebrow { color: rgba(242,232,213,0.75); }
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 300;
  line-height: 0.93;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(30,18,8,0.25);
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(242,232,213,0.88);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.br-desk { display: inline; }

@media (max-width: 580px) {
  .br-desk { display: none; }
}

/* ═══════════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════════ */
#philosophy {
  padding: clamp(5rem, 13vh, 9rem) 0;
  text-align: center;
}
.philosophy-main {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--warm-black);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.philosophy-trio {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 2.5rem;
}
.philosophy-trio span {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--mid);
}
.philosophy-body {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
#about {
  padding: clamp(4rem, 10vh, 7.5rem) 0;
  background: var(--cream-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-image img {
  width: 100%;
  height: clamp(300px, 48vw, 500px);
  object-fit: cover;
  border-radius: 10px;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--warm-black);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-kicker {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--amber) !important;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   TEAM
   ═══════════════════════════════════════ */
#team {
  padding: clamp(5rem, 13vh, 9rem) 0;
  background: var(--cream-dark);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.team-card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184,114,64,0.1);
}
.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-photo img {
  transform: scale(1.03);
}
.team-card:nth-child(2) .team-photo img {
  filter: saturate(0.78) brightness(1.04);
}
.team-text {
  padding: 1.75rem 1.75rem 2rem;
}
.team-text h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 0.25rem;
}
.team-tag {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.team-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.team-text p:last-child { margin-bottom: 0; }
.team-text em { color: var(--mid); font-style: italic; }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 280px; }
}

/* ═══════════════════════════════════════
   CLASSES
   ═══════════════════════════════════════ */
#classes {
  padding: clamp(5rem, 13vh, 9rem) 0;
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.class-card {
  background: var(--cream-dark);
  border-radius: 10px;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid rgba(184,114,64,0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(30,18,8,0.07);
}
.class-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}
.class-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--warm-black);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.class-tag {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.class-card p:not(.class-tag) {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.65;
}
.classes-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--mid);
}

/* ═══════════════════════════════════════
   B.O.A.R.D.
   ═══════════════════════════════════════ */
#board {
  padding: clamp(5rem, 13vh, 9rem) 0;
  background: var(--cream-dark);
}
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.board-image img {
  width: 100%;
  height: clamp(360px, 55vw, 580px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
}
.board-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--warm-black);
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
}
.board-acronym {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.board-text > p:not(.board-acronym):not(.board-kicker) {
  color: var(--text-light);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}
.board-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-left: 2px solid var(--amber);
  padding-left: 1.25rem;
  margin-bottom: 1.75rem;
}
.pillar strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}
.pillar p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.65;
}
.board-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid);
}

@media (max-width: 768px) {
  .board-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   UPCOMING EVENTS
   ═══════════════════════════════════════ */
#upcoming {
  padding: clamp(5rem, 13vh, 9rem) 0;
  background: var(--cream-dark);
}
.events-list {
  max-width: 700px;
  margin: 0 auto 1.75rem;
  border-top: 1px solid rgba(30,18,8,0.1);
}
.event-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 1rem;
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(30,18,8,0.07);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
  cursor: pointer;
  border-radius: 6px;
}
.event-row:hover {
  background: rgba(184,114,64,0.07);
}
.event-row:hover .event-name {
  color: var(--amber);
}
.event-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-black);
  grid-column: 1;
  grid-row: 1;
  transition: color 0.2s;
}
.event-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  grid-column: 1;
  grid-row: 2;
}
.event-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1rem;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.event-row:hover .event-arrow {
  opacity: 1;
  transform: translateX(0);
}
.events-empty {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-light);
  padding: 2rem 0;
  font-size: 1.1rem;
}
.events-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .event-row { padding: 1.1rem 0.5rem; }
}

/* ═══════════════════════════════════════
   GUIDED RIDES
   ═══════════════════════════════════════ */
#rides {
  padding: clamp(5rem, 13vh, 9rem) 0;
}
.rides-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.rides-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-black);
  margin-bottom: 1.25rem;
}
.rides-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.rides-reach {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 0.25rem;
}
.rides-text .btn {
  margin-top: 0.5rem;
}
.rides-image img {
  width: 100%;
  height: clamp(300px, 48vw, 500px);
  object-fit: cover;
  object-position: center 40%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .rides-grid {
    grid-template-columns: 1fr;
  }
  .rides-image { order: -1; }
}

/* ═══════════════════════════════════════
   SPACE DIVIDER
   ═══════════════════════════════════════ */
#space {
  position: relative;
  height: clamp(400px, 55vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.space-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}
.space-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,4,0.55);
}
.space-quote {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  text-align: center;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: 680px;
  text-shadow: 0 2px 14px rgba(20,10,4,0.5);
}
.space-quote em {
  font-style: italic;
  color: rgba(242,232,213,0.75);
}

/* ═══════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════ */
#schedule {
  padding: clamp(5rem, 13vh, 9rem) 0;
}
.schedule-table {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  border-top: 1px solid rgba(30,18,8,0.1);
}
.schedule-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(30,18,8,0.07);
  text-decoration: none;
  transition: background 0.2s var(--ease), padding 0.2s var(--ease);
  border-radius: 6px;
}
a.schedule-row:hover {
  background: rgba(184,114,64,0.07);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
a.schedule-row:hover .s-class {
  color: var(--amber);
}
.schedule-row:nth-child(even) {
  background: rgba(30,18,8,0.025);
  margin: 0 -1rem;
  padding: 1.1rem 1rem;
}
.s-day {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
}
.s-class {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--warm-black);
}
.s-time {
  font-size: 0.83rem;
  color: var(--text-light);
  text-align: right;
  white-space: nowrap;
}
.schedule-location {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.calendar-image {
  max-width: 860px;
  margin: 3rem auto 0;
}
.calendar-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(30,18,8,0.1);
}

@media (max-width: 480px) {
  .schedule-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.25rem 1rem;
  }
  .s-day { grid-row: 1; grid-column: 1; }
  .s-time { grid-row: 1; grid-column: 2; }
  .s-class { grid-row: 2; grid-column: 1 / -1; font-size: 1.1rem; padding-bottom: 0.15rem; }
  .schedule-row:nth-child(even) { margin: 0 -0.75rem; padding: 1.1rem 0.75rem; }
}

/* ═══════════════════════════════════════
   EMAIL LIST
   ═══════════════════════════════════════ */
#email-list {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--warm-black);
  text-align: center;
}
.email-list-inner {
  max-width: 560px;
}
#email-list .eyebrow { color: var(--sand); }
#email-list h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.email-list-sub {
  color: rgba(242,232,213,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.email-list-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}
.email-list-form input {
  flex: 1;
  background: rgba(242,232,213,0.08);
  border: 1.5px solid rgba(242,232,213,0.2);
  border-radius: 100px;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.25s;
}
.email-list-form input::placeholder { color: rgba(242,232,213,0.35); }
.email-list-form input:focus { border-color: var(--sand); }
.btn-amber {
  background: var(--amber);
  color: var(--cream);
  border-color: var(--amber);
  white-space: nowrap;
}
.btn-amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

@media (max-width: 500px) {
  .email-list-form { flex-direction: column; }
  .email-list-form input { border-radius: 8px; }
  .btn-amber { border-radius: 8px; width: 100%; }
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
#contact {
  padding: clamp(5rem, 13vh, 9rem) 0;
  background: var(--cream-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--warm-black);
  margin-bottom: 1.25rem;
}
.contact-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact-tagline {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--amber) !important;
}

/* Form */
.form-field { margin-bottom: 1.75rem; }
.form-field label {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(30,18,8,0.18);
  padding: 0.55rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--warm-black);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(122,96,80,0.45); }
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--amber); }
.form-field textarea { resize: vertical; min-height: 100px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--warm-black);
  padding: clamp(4rem, 8vh, 6rem) 0 3rem;
  text-align: center;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.footer-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(242,232,213,0.15);
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.footer-lines p {
  font-size: 0.88rem;
  color: rgba(242,232,213,0.55);
  line-height: 1.9;
}
.footer-copy {
  margin-top: 2rem;
  font-size: 0.68rem;
  color: rgba(242,232,213,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
