@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #0b0b0d;
  --slate: #3b3b42;
  --bg: #f8f5f2;
  --panel: #ffffff;
  --line: #e6dfd7;
  --accent: #f26a21;
  --accent-2: #111115;
  --shadow: 0 26px 60px rgba(15, 15, 18, 0.16);

  font-family: "Work Sans", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

p {
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 0;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--slate);
}

.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 106, 33, 0.22), transparent 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -35% -20%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(11, 11, 13, 0.2), transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin: 0 0 1rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 20, 24, 0.12);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: var(--bg);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.stat {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}

.stat-label {
  margin: 0;
  color: var(--slate);
  font-size: 0.85rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b0b0d, #1a1a20);
  color: #f7f3ed;
  border-radius: 28px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(11, 11, 13, 0.8), rgba(11, 11, 13, 0.2));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-media video.is-active {
  opacity: 1;
}

.hero-card-inner h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.9rem;
}

.hero-card-inner p {
  color: rgba(247, 243, 237, 0.82);
}

.hero-card-inner {
  position: relative;
  z-index: 2;
}

.card-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.6);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.8rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(247, 243, 237, 0.14);
  font-size: 0.8rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-copy {
  color: var(--slate);
  max-width: 420px;
}

.muted {
  background: #f1ece7;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.detail-card {
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 18px 40px rgba(20, 20, 24, 0.05);
  cursor: pointer;
}

.detail-card summary {
  list-style: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.detail-card summary::-webkit-details-marker {
  display: none;
}

.detail-card summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
}

.detail-card[open] summary::after {
  content: "–";
}

.detail-card p {
  margin: 0.8rem 0 0;
  color: var(--slate);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.about-panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(20, 20, 24, 0.05);
}

.about-panel h3 {
  margin-top: 0;
}

.about-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--slate);
}

.about-panel li {
  margin-bottom: 0.6rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.media-card {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 20px 40px rgba(20, 20, 24, 0.12);
}

.cta {
  padding: 4rem 0 5rem;
}

.cta-inner {
  background: linear-gradient(120deg, #0b0b0d, #3a1e11);
  color: #f7f3ed;
  padding: 3rem;
  border-radius: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-copy {
  max-width: 360px;
}

.quote-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  flex: 1 1 520px;
  width: min(560px, 100%);
  min-width: 0;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 7, 9, 0.75);
  z-index: 40;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #0b0b0d;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  color: #f7f3ed;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-close {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f7f3ed;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal .quote-form {
  width: 100%;
  flex: initial;
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
  width: 100%;
}

.quote-form label {
  font-weight: 600;
}

.quote-form input:not([type="checkbox"]),
.quote-form textarea,
.multi-trigger {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.65rem 0.75rem;
  background: rgba(11, 11, 13, 0.6);
  color: #f7f3ed;
  font-family: inherit;
  width: 100%;
}

.quote-form input:not([type="checkbox"])::placeholder,
.quote-form textarea::placeholder {
  color: rgba(247, 243, 237, 0.7);
}

.field-hint {
  font-size: 0.75rem;
  color: rgba(247, 243, 237, 0.7);
}

.multi-select {
  position: relative;
}

.multi-trigger {
  text-align: left;
  cursor: pointer;
}

.multi-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.6rem;
  display: none;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  max-height: 240px;
  overflow-y: auto;
  box-sizing: border-box;
  justify-items: stretch;
}

.multi-select.is-open .multi-panel {
  display: grid;
  gap: 0.4rem;
}

.multi-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  width: 100%;
  text-align: left;
}

.multi-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.multi-option input {
  accent-color: var(--accent);
  margin: 0;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.multi-option span {
  flex: 1;
  line-height: 1.3;
  text-align: left;
}

.quote-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(247, 243, 237, 0.75);
}

.form-success {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  color: #ffd7bf;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 30;
  background: #0b0b0d;
  color: #f7f3ed;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-title {
  margin: 0.4rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-form,
  .modal .quote-form {
    grid-template-columns: 1fr !important;
  }


  .field-full {
    grid-column: span 1;
  }

  .modal .field-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .modal {
    align-items: stretch;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    padding: 1.5rem;
  }

  .modal .quote-form {
    grid-template-columns: 1fr !important;
  }

  .cta-inner {
    padding: 2rem 1.5rem;
  }

  .cta-copy,
  .cta-actions,
  .quote-form {
    width: 100%;
  }

  .quote-form {
    flex: 1 1 100%;
    grid-template-columns: 1fr;
  }

  .cta-actions .btn,
  .quote-form .btn {
    width: 100%;
    justify-content: center;
  }

}
