:root {
  --wine: #5c0424;
  --gold: #da9f72;
  --accent: #8c4b36;
  --text: #1f2937;
  --muted: #4b5563;
  --soft: #f8f4f4;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.2);
  --font-serif: "Playfair Display", serif;
  --font-sans: "Lato", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  background: var(--white);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1152px);
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 16px;
  padding: 14px 18px;
  z-index: 999;
  color: var(--white);
  background: var(--wine);
  clip-path: none;
  border-radius: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--wine);
  line-height: 1.1;
}

.brand-copy small {
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--wine);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--wine);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle-close {
  display: none;
}

.menu-toggle.is-open .menu-toggle-open {
  display: none;
}

.menu-toggle.is-open .menu-toggle-close {
  display: block;
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-small {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.btn-hero {
  min-height: 58px;
  box-shadow: 0 18px 40px rgba(218, 159, 114, 0.35);
}

.hero-section {
  padding: 144px 0 96px;
  background:
    radial-gradient(circle at 82% 28%, rgba(218, 159, 114, 0.16), transparent 28%),
    linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 450px);
  align-items: center;
  gap: 64px;
}

.hero-eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 14px;
  color: var(--wine);
  background: rgba(92, 4, 36, 0.08);
  border: 1px solid rgba(92, 4, 36, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 36px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.7;
}

.hero-media {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: 24px -12px -12px 28px;
  border-radius: 999px;
  background: rgba(218, 159, 114, 0.2);
  filter: blur(36px);
}

.hero-image-card {
  position: relative;
  margin: 0;
  border: 4px solid var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.section-muted {
  background: #f9fafb;
}

.section-contact {
  color: var(--white);
  background: var(--wine);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.team-name,
.contact-copy h2,
.location-header h2,
.footer-brand {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-serif);
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-divider {
  display: block;
  width: 96px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: var(--gold);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.problem-card,
.step-card,
.faq-item,
.reviews-card,
.contact-form {
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.problem-card {
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(218, 159, 114, 0.5);
  box-shadow: var(--shadow-md);
}

.problem-icon,
.step-icon,
.location-icon,
.contact-highlight-icon,
.social-icon-link,
.team-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.problem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--wine);
  background: rgba(92, 4, 36, 0.08);
  border-radius: 50%;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.problem-card:hover .problem-icon {
  color: var(--white);
  background: var(--wine);
}

.problem-card h3,
.step-card h3,
.faq-trigger span:first-child {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.problem-card p,
.step-card p,
.team-role,
.team-bio p,
.team-stat span,
.location-header p,
.footer-disclaimer,
.footer-legal p,
.field-group span,
.faq-panel p {
  margin: 0;
  color: var(--muted);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 2px;
  background: #d1d5db;
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  overflow: hidden;
}

.step-icon,
.location-icon {
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: 14px;
  right: 24px;
  z-index: -1;
  color: #f3f4f6;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.step-card h3 {
  margin-top: 18px;
  color: var(--wine);
}

.section-cta {
  margin-top: 48px;
  text-align: center;
}

.team-slider {
  position: relative;
}

.team-viewport {
  overflow: hidden;
}

.team-track {
  display: flex;
  transition: transform 0.5s ease;
}

.team-slide {
  width: 100%;
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.team-photo-wrap {
  position: relative;
}

.team-shape {
  position: absolute;
  width: 96px;
  height: 96px;
  z-index: 0;
}

.team-shape-top {
  top: -16px;
  left: -16px;
  border-top-left-radius: 32px;
  background: rgba(92, 4, 36, 0.1);
}

.team-shape-bottom {
  right: -16px;
  bottom: -16px;
  border-bottom-right-radius: 32px;
  background: rgba(218, 159, 114, 0.22);
}

.team-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-kicker {
  color: var(--gold);
  background: rgba(218, 159, 114, 0.12);
  border-color: rgba(218, 159, 114, 0.18);
}

.team-name {
  font-size: clamp(2.4rem, 5vw, 3rem);
  line-height: 1;
}

.team-role {
  margin-top: 6px;
  font-size: 1.2rem;
}

.team-socials {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 42px;
  height: 42px;
  color: var(--wine);
  border: 1px solid rgba(218, 159, 114, 0.6);
  border-radius: 50%;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-icon-link:hover,
.social-icon-link:focus {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.team-bio {
  display: grid;
  gap: 16px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.8;
}

.team-bio blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  font-style: italic;
}

.team-stats {
  display: flex;
  gap: 42px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.team-stat-value {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}

.team-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  color: var(--wine);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.team-arrow:hover,
.team-arrow:focus {
  color: var(--gold);
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-md);
}

.team-arrow-prev {
  left: -12px;
  transform: translate(-50%, -50%);
}

.team-arrow-next {
  right: -12px;
  transform: translate(50%, -50%);
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.team-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #d1d5db;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.team-dot.is-active,
.team-dot:hover,
.team-dot:focus {
  background: var(--wine);
}

.faq-wrap {
  max-width: 832px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-panel {
  max-height: none;
  padding: 0 24px 24px;
}

.faq-icon {
  flex-shrink: 0;
  color: #9ca3af;
  transition: color 0.25s ease, transform 0.25s ease;
}

.js-enabled .faq-panel {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.js-enabled .faq-item.is-open .faq-panel {
  max-height: 260px;
  padding: 0 24px 24px;
  opacity: 1;
}

.js-enabled .faq-item.is-open .faq-icon {
  color: var(--gold);
  transform: rotate(180deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: 48px;
  align-items: center;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 0.98;
}

.contact-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.contact-highlight-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-highlight strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.contact-highlight small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.contact-form {
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.field-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field-group span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 16px 18px;
  color: #111827;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field-group textarea {
  min-height: 120px;
  resize: none;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(92, 4, 36, 0.08);
}

.btn-submit {
  min-height: 60px;
  font-size: 0.98rem;
}

.form-privacy {
  margin: 16px 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.location-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-icon {
  color: var(--wine);
  background: rgba(92, 4, 36, 0.08);
}

.location-header h2 {
  font-size: 2rem;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.text-link:hover,
.text-link:focus {
  color: var(--gold);
}

.reviews-card {
  margin-top: 28px;
  padding: 24px;
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-head p {
  margin: 0;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.map-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.site-footer {
  padding: 48px 0;
  color: #9ca3af;
  background: #111827;
  border-top: 1px solid #1f2937;
}

.footer-top,
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-top {
  align-items: center;
}

.footer-brand {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a,
.footer-legal a {
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #1f2937;
}

.footer-disclaimer {
  max-width: 860px;
  font-size: 0.75rem;
  line-height: 1.65;
}

.footer-legal {
  margin-top: 24px;
  align-items: center;
  font-size: 0.88rem;
}

.footer-legal a {
  color: #d1d5db;
  text-decoration: underline dotted;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.js-enabled .reveal-left {
  transform: translateX(-32px);
}

.js-enabled .reveal-right {
  transform: translateX(32px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .team-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .team-arrow-prev {
    left: 14px;
    transform: translateY(-50%);
  }

  .team-arrow-next {
    right: 14px;
    transform: translateY(-50%);
  }

  .footer-top,
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1152px);
  }

  .header-inner {
    padding: 12px 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
    padding: 12px 12px 20px;
    background: var(--white);
    border-top: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-md);
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav-link {
    display: block;
    padding: 16px 4px;
    color: var(--muted);
    border-bottom: 1px solid #f3f4f6;
  }

  .hero-section {
    padding: 112px 0 72px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy,
  .section-heading,
  .problem-card,
  .step-card,
  .team-copy,
  .contact-copy {
    text-align: center;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-image {
    aspect-ratio: 1;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .problem-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    width: 100%;
  }

  .team-grid {
    gap: 36px;
  }

  .team-photo {
    height: 480px;
  }

  .team-header,
  .team-stats {
    flex-direction: column;
    align-items: center;
  }

  .team-stats {
    gap: 24px;
  }

  .team-arrow {
    top: 240px;
  }

  .faq-trigger {
    padding: 18px 20px;
  }

  .js-enabled .faq-panel {
    padding: 0 20px;
  }

  .js-enabled .faq-item.is-open .faq-panel,
  .faq-panel {
    padding: 0 20px 20px;
  }

  .contact-form {
    padding: 24px;
  }

  .location-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .reviews-head {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
