/* ============================================================
   Elevated Event Rentals — shared stylesheet
   Style: elegant editorial, mountain-luxe
   ============================================================ */

:root {
  --cream:        #FAF6EF;
  --cream-dark:   #F2EDE2;
  --ink:          #1F1A14;
  --ink-muted:    #6B6259;
  --line:         #E2DACB;
  --forest:       #3F4D38;
  --forest-deep:  #2D3729;
  --brass:        #B4945C;
  --brass-dark:   #8E7345;
  --white:        #FFFFFF;

  --container:    1200px;
  --container-narrow: 880px;

  --font-serif:   "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --shadow-soft:  0 10px 40px rgba(31, 26, 20, 0.08);
  --shadow-hover: 0 18px 60px rgba(31, 26, 20, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--forest); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; color: var(--ink); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 38em;
}

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow { display: block; }
.section-head p { color: var(--ink-muted); max-width: 38em; margin: 0 auto; }

.divider {
  width: 60px; height: 1px; background: var(--brass);
  border: 0; margin: 24px auto;
}

/* -------- Header / nav -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand small {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--brass-dark); }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 12px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s var(--ease);
}
.nav-cta:hover { background: var(--brass-dark); }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none; border: 0;
  font-size: 1.5rem; color: var(--ink); cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }
}

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--brass-dark); color: var(--cream); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover { background: var(--white); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
}
.link-arrow:hover { color: var(--brass-dark); border-color: var(--brass-dark); }
.link-arrow .arrow { transition: transform .25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.25) 0%, rgba(31,26,20,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  max-width: 720px;
  padding: 120px 32px;
  margin: 0 auto;
  text-align: center;
}
.hero__content .eyebrow { color: #E8D6AF; }
.hero__content h1 { color: var(--cream); }
.hero__content p {
  color: rgba(250, 246, 239, 0.92);
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 36px;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Compact page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero__image { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,26,20,0.35), rgba(31,26,20,0.55)); }
.page-hero__content { position: relative; z-index: 1; color: var(--cream); text-align: center; padding: 80px 32px; max-width: 740px; margin: 0 auto; }
.page-hero__content h1 { color: var(--cream); }
.page-hero__content .eyebrow { color: #E8D6AF; }
.page-hero__content p { color: rgba(250,246,239,0.9); }

/* -------- Card grid -------- */
.grid {
  display: grid;
  gap: 40px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 12px; }
.card__body p { color: var(--ink-muted); flex: 1; }
.card__body .link-arrow { margin-top: 18px; align-self: flex-start; }

/* -------- Feature row (alternating image+text) -------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row__media { order: 2; }
.feature-row__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.feature-row__text { padding: 0 12px; }
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .feature-row.reverse .feature-row__media { order: 0; }
}

/* -------- Pricing cards -------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.price-card.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.price-card.featured h3,
.price-card.featured .price,
.price-card.featured li { color: var(--cream); }
.price-card.featured .eyebrow { color: #E8D6AF; }
.price-card.featured li::before { color: var(--brass); }

.price-card .badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--brass); color: var(--white);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
}

.price-card h3 { margin-bottom: 8px; }
.price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  margin: 12px 0 4px;
  color: var(--ink);
}
.price small { font-size: 0.95rem; color: var(--ink-muted); font-family: var(--font-sans); }

.price-card .desc { color: var(--ink-muted); margin-bottom: 24px; }
.price-card.featured .desc { color: rgba(250,246,239,0.85); }

.price-card ul {
  list-style: none; padding: 0; margin: 0 0 36px;
  flex: 1;
}
.price-card li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  position: relative;
  color: var(--ink);
}
.price-card.featured li { border-color: rgba(250,246,239,0.15); }
.price-card li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--brass);
}

/* -------- Quote / review -------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute; top: 12px; left: 32px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--brass);
  line-height: 1;
  opacity: 0.6;
}
.review p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 24px 0 28px;
}
.review .reviewer {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.review .reviewer strong { color: var(--ink); display: block; margin-bottom: 4px; letter-spacing: 0.15em; }

/* -------- Gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}
.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery__item.wide { grid-column: span 2; }
  .gallery__item.tall { grid-row: span 1; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item.wide { grid-column: span 1; }
}

/* -------- Contact / forms -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info p, .contact-info a { color: var(--ink); }
.contact-info .info-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-row:last-child { border-bottom: 0; }
.contact-info .label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-info .value { font-size: 1.1rem; }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px;
}
form.contact-form .field { margin-bottom: 24px; }
form.contact-form label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s var(--ease);
}
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
  outline: none;
  border-color: var(--brass);
}
form.contact-form textarea { min-height: 140px; resize: vertical; }
form.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { form.contact-form .row { grid-template-columns: 1fr; } }

/* -------- FAQ -------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--brass);
  transition: transform .25s var(--ease);
  font-family: var(--font-sans);
  font-weight: 300;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 16px; color: var(--ink-muted); }

/* -------- CTA band -------- */
.cta-band {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 100px 32px;
}
.cta-band h2 { color: var(--cream); }
.cta-band .eyebrow { color: #E8D6AF; }
.cta-band p { color: rgba(250,246,239,0.85); max-width: 520px; margin: 0 auto 32px; }
.cta-band .btn-primary { background: var(--cream); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--brass); color: var(--cream); }

/* -------- Footer -------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(250, 246, 239, 0.85);
  padding: 80px 0 32px;
}
.site-footer a { color: rgba(250, 246, 239, 0.85); }
.site-footer a:hover { color: var(--brass); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-grid .brand-block .brand { color: var(--cream); margin-bottom: 16px; }
.footer-grid .brand-block .brand small { color: #E8D6AF; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; font-size: 0.95rem; }

.social-row { display: flex; gap: 16px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250,246,239,0.3);
  border-radius: 50%;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.social-row a:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }
.social-row svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(250,246,239,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250,246,239,0.65);
  flex-wrap: wrap;
  gap: 12px;
}

/* -------- Utility -------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.alt-bg { background: var(--cream-dark); }
