:root {
  --cream: #f6ecdd;
  --champagne: #eeddc4;
  --soft-white: #f0e6d6;
  --ink: #2a2118;
  --serif: "Cormorant Garamond", "Times New Roman", serif;

  --ivory: #faf6f0;
  --ivory-deep: #f2ead9;
  --charcoal: #241c15;
  --charcoal-deep: #16110c;
  --muted: #6b6053;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--serif);
  background: #0d0d0c;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg.png");
  background-size: cover;
  background-position: 52% center;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero-bg {
    background-image: url("../assets/hero-bg-mobile.jpg");
    background-position: center 38%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.08) 70%),
    linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 45%);
}

/* ---------- Header ---------- */

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(2.5rem, 4.2vh, 3.2rem) clamp(2.5rem, 4.6vw, 4.8rem) 0;
}

.logo {
  display: block;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: clamp(112px, 16vh, 177px);
  width: auto;
}

.hero-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 3;
}

.hero-burger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hero-burger.open span:nth-child(2) {
  opacity: 0;
}

.hero-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  left: 50%;
  top: clamp(2.6rem, 6.6vh, 4rem);
  transform: translateX(-50%);
  display: flex;
  gap: clamp(1.8rem, 3.4vw, 3.2rem);
}

.nav a {
  font-family: var(--serif);
  font-size: clamp(0.875rem, 1.7vh, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--soft-white);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--champagne);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(0.6rem, 1.6vh, 1.1rem);
  margin-right: clamp(0.2rem, 1vw, 1rem);
}

.social-icons {
  display: flex;
  gap: 1.1rem;
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  color: var(--cream);
}

.tagline {
  margin-top: 1.1rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(240, 230, 214, 0.5);
  width: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tagline-line1,
.tagline-line2 {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft-white);
  line-height: 1.7;
}

.tagline-heart {
  width: 9px;
  height: 9px;
  margin-top: 0.35rem;
  color: var(--cream);
}

/* ---------- Hero content ---------- */

.hero-content {
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1200px);
  text-align: center;
}

.eyebrow {
  font-size: clamp(0.8rem, 0.95vw, 0.94rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: clamp(0.6rem, 1.4vh, 0.9rem);
}

.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.4vw, 5.25rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.supporting {
  margin-top: clamp(0.9rem, 2.2vh, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: clamp(0.72rem, 0.8vw, 0.85rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soft-white);
  white-space: nowrap;
}

.divider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(246, 236, 221, 0.55);
}

.buttons {
  margin-top: clamp(1.5rem, 3.4vh, 2.6rem);
  display: flex;
  justify-content: center;
  gap: clamp(1.1rem, 1.4vw, 1.4rem);
  flex-wrap: wrap;
}

.btn {
  min-width: 250px;
  padding: 1.15rem 2rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 1px;
  transition: all 0.25s ease;
}

.btn-filled {
  background: var(--champagne);
  color: var(--ink);
}

.btn-filled:hover {
  background: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 236, 221, 0.65);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(246, 236, 221, 0.08);
}

/* ---------- Scroll indicator ---------- */

.scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: clamp(1.3rem, 3vh, 2.4rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.scroll-line {
  width: 1px;
  height: clamp(28px, 3.8vh, 38px);
  background: rgba(246, 236, 221, 0.5);
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-white);
}

.chevron {
  width: 13px;
  height: 13px;
  color: var(--soft-white);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    min-height: 560px;
  }

  .hero-header {
    padding: 1.5rem 1.5rem 0;
    align-items: center;
  }

  .nav,
  .header-right {
    display: none;
  }

  .hero-burger {
    display: flex;
  }

  .logo-img {
    height: 64px;
  }

  .hero-content {
    top: 56%;
    width: min(92%, 560px);
  }

  .headline {
    white-space: normal;
    font-size: clamp(2.1rem, 8vw, 3.4rem);
  }

  .supporting {
    white-space: normal;
    padding: 0 0.5rem;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding: 1.05rem 1.5rem;
  }

  .scroll-indicator {
    bottom: 1.6rem;
  }
}

/* Short-viewport safety net: only kicks in when browser chrome (in-app
   webviews, address bars) eats enough height that the normal layout above
   would overlap. Leaves full-height phones untouched. */
@media (max-width: 900px) and (max-height: 720px) {
  .hero-content {
    top: 46%;
  }

  .eyebrow {
    margin-bottom: 0.4rem;
  }

  .headline {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
  }

  .supporting {
    margin-top: 0.6rem;
  }

  .buttons {
    margin-top: 0.9rem;
    gap: 0.6rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
  }

  .scroll-indicator {
    bottom: 0.7rem;
    gap: 0.35rem;
  }

  .scroll-line {
    height: 18px;
  }
}

@media (max-width: 900px) and (max-height: 600px) {
  .hero-content {
    top: 40%;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 560px) {
  .logo-img {
    height: 54px;
  }

  .hero-header {
    padding: 1.3rem 1.3rem 0;
  }

  .eyebrow {
    letter-spacing: 0.28em;
  }

  .headline {
    font-size: clamp(2.1rem, 9.5vw, 2.9rem);
  }

  .supporting {
    letter-spacing: 0.16em;
  }
}

@media (max-width: 390px) {
  .headline {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }
}

/* ==========================================================
   SHARED SECTION STYLES
   ========================================================== */

.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a8825a;
  margin-bottom: 0.9rem;
}

.section-eyebrow--light {
  color: var(--champagne);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 6vh, 4.5rem);
  padding: 0 1.5rem;
}

.about-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.btn-dark {
  display: inline-block;
  padding: 1.05rem 2.4rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 1px;
  transition: background 0.25s ease;
}

.btn-dark:hover {
  background: var(--charcoal-deep);
}

.btn-outline-light {
  display: inline-block;
  padding: 1.05rem 2.4rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 236, 221, 0.5);
  border-radius: 1px;
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(246, 236, 221, 0.08);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   STICKY NAV
   ========================================================== */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(20, 15, 10, 0.06);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.sticky-nav.visible {
  transform: translateY(0);
}

.sticky-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  white-space: nowrap;
}

.sticky-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}

.sticky-links {
  display: flex;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.sticky-links a {
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.sticky-links a:hover {
  color: #a8825a;
}

.sticky-cta {
  padding: 0.75rem 1.6rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 1px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.sticky-cta:hover {
  background: var(--charcoal-deep);
}

.sticky-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.sticky-burger span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sticky-burger.open span:nth-child(2) {
  opacity: 0;
}

.sticky-burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background: var(--ivory);
  z-index: 49;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem clamp(2rem, 8vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.mobile-menu-cta {
  margin-top: 0.8rem;
  padding: 1rem 1.8rem;
  font-size: 0.85rem !important;
  letter-spacing: 0.18em !important;
  background: var(--charcoal);
  color: var(--cream) !important;
  border-radius: 1px;
}

@media (max-width: 780px) {
  .sticky-links,
  .sticky-cta {
    display: none;
  }

  .sticky-burger {
    display: flex;
  }
}

/* ==========================================================
   ABOUT
   ========================================================== */

.about {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.about-image img {
  width: 100%;
  height: clamp(340px, 60vh, 620px);
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(30, 20, 10, 0.35);
}

.about-copy {
  max-width: 540px;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 3.5rem;
  }

  .about-image img {
    height: clamp(320px, 52vh, 460px);
    border-radius: 0;
    box-shadow: none;
  }

  .about-copy {
    max-width: none;
    padding: 2.5rem 1.5rem 0;
  }

  .about-copy .btn-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    text-align: center;
    padding: 1.1rem 1.5rem;
  }

  .about-copy .btn-dark::after {
    content: "\2192";
  }
}

@media (max-width: 390px) {
  .about-image img {
    height: 340px;
  }
}

/* ==========================================================
   GALLERIES
   ========================================================== */

.galleries {
  background: var(--ivory-deep);
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 6vw, 4rem);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  columns: 4 260px;
  column-gap: 1rem;
}

.gallery-item {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0);
  transition: background 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  background: rgba(20, 15, 10, 0.12);
}

@media (max-width: 900px) {
  .galleries {
    padding: clamp(3.5rem, 9vh, 5rem) 1.5rem;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 2 140px;
    column-gap: 0.6rem;
  }

  .gallery-item {
    margin-bottom: 0.6rem;
    border-radius: 1px;
  }
}

/* ==========================================================
   REVIEWS
   ========================================================== */

.reviews {
  background: var(--charcoal-deep);
  padding: clamp(4.5rem, 12vh, 8rem) 1.5rem;
  text-align: center;
}

.reviews-inner {
  max-width: 680px;
  margin: 0 auto;
}

.reviews-inner--bottom {
  margin-top: clamp(2.5rem, 6vh, 3.5rem);
}

.review-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.8rem 0 0;
}

.review-stat-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--champagne);
  line-height: 1;
}

.review-stat-label {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-white);
  text-align: center;
  line-height: 1.8;
}

/* ---------- Trust stat marquee ---------- */

.trust-marquee-root {
  margin: clamp(2rem, 5vh, 3rem) 0;
  border-top: 1px solid rgba(246, 236, 221, 0.12);
  border-bottom: 1px solid rgba(246, 236, 221, 0.12);
  padding: 0.9rem 0;
}

.trust-items {
  display: flex;
  align-items: center;
  flex: none;
}

.trust-item {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soft-white);
  white-space: nowrap;
  padding: 0 1.4rem;
}

.trust-dot {
  color: var(--champagne);
  opacity: 0.6;
}

/* ---------- Marquee (shared) ---------- */

.marquee-viewport {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* ---------- Review cards ---------- */

.review-marquee-root {
  margin: 0 0 clamp(1rem, 3vh, 2rem);
}

.review-cards {
  display: flex;
  flex: none;
  gap: 1.25rem;
  padding: 0 0.625rem;
}

.review-card {
  flex: none;
  width: min(400px, 82vw);
  background: rgba(246, 236, 221, 0.05);
  border: 1px solid rgba(246, 236, 221, 0.12);
  border-radius: 3px;
  padding: 2rem;
  text-align: left;
}

.review-card-quote {
  width: 30px;
  height: 22px;
  color: var(--champagne);
  opacity: 0.7;
  margin-bottom: 1.1rem;
}

.review-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  min-height: 5.9rem;
}

.review-card-divider {
  width: 32px;
  height: 1px;
  background: rgba(246, 236, 221, 0.3);
  margin: 1.3rem 0 1rem;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.review-card-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--champagne);
}

.review-card-caption {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Mobile review stack (replaces marquees) ---------- */

.reviews-mobile-stack {
  display: none;
}

@media (max-width: 900px) {
  .reviews {
    padding: clamp(3.5rem, 9vh, 5rem) 1.5rem;
  }

  .trust-marquee-root,
  .review-marquee-root {
    display: none;
  }

  .reviews-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    max-width: 460px;
    margin: 2.5rem auto 0;
  }

  .reviews-mobile-stack .review-card {
    width: 100%;
    padding: 1.6rem;
  }

  .reviews-mobile-stack .review-card blockquote {
    min-height: 0;
    font-size: 1.15rem;
  }

  .reviews-inner--bottom {
    margin-top: 2.5rem;
  }
}

/* ==========================================================
   FOLLOW / INSTAGRAM
   ========================================================== */

.follow {
  background: var(--ivory);
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}

.follow-grid {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
}

.follow-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.follow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.follow-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 780px) {
  .follow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact {
  background: var(--ivory-deep);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.contact-info {
  max-width: 460px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.6rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--charcoal);
}

.contact-details a {
  color: var(--charcoal);
  border-bottom: 1px solid rgba(36, 28, 21, 0.3);
  width: fit-content;
}

.social-icons--dark a svg {
  color: var(--charcoal);
  width: 20px;
  height: 20px;
}

.social-icons--dark {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  box-shadow: 0 30px 60px -30px rgba(30, 20, 10, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--serif);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(36, 28, 21, 0.2);
  border-radius: 2px;
  background: #fff;
  color: var(--charcoal);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #a8825a;
}

.contact-form .btn-filled {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
}

@media (max-width: 780px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: clamp(3.5rem, 9vh, 5rem) 1.5rem;
  }

  .contact-info {
    max-width: none;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
  }

  .contact-form .btn-filled {
    align-self: stretch;
    text-align: center;
    padding: 1.1rem 1.5rem;
  }
}

@media (max-width: 420px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  background: var(--charcoal-deep);
  padding: clamp(3rem, 6vh, 4rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  text-align: center;
}

.footer-logo {
  height: 70px;
  width: auto;
}

.footer-email {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 236, 221, 0.3);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ==========================================================
   LIGHTBOX
   ========================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vh, 2rem);
  right: clamp(1rem, 3vw, 2.5rem);
  font-size: 2.4rem;
  line-height: 1;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.lightbox-arrow:hover {
  opacity: 1;
}

.lightbox-prev {
  left: clamp(0.5rem, 2vw, 2rem);
}

.lightbox-next {
  right: clamp(0.5rem, 2vw, 2rem);
}

@media (max-width: 600px) {
  .lightbox-arrow {
    font-size: 1.2rem;
    padding: 0.6rem;
  }
}
