@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap");

:root {
  --charcoal: #3a3d3d;
  --mist: #b5bebe;
  --paper: #ffffff;
  --wine: #750505;
  --ink: #000000;
  --bg: #f4f5f5;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--charcoal);
  background: radial-gradient(circle at top left, #e5e9e9 0%, #f6f6f6 35%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 61, 61, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  width: clamp(140px, 12vw, 180px);
  height: auto;
  display: block;
}

.site-header .logo-img {
  filter: brightness(0) saturate(100%) invert(18%);
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--paper);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(58, 61, 61, 0.2);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 0 24px 120px;
}

main > * {
  width: 100%;
  min-width: 0;
}

.hero-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    linear-gradient(90deg, #f6f6f6 0%, rgba(246, 246, 246, 0.92) 42%, rgba(246, 246, 246, 0.45) 100%),
    linear-gradient(180deg, rgba(117, 5, 5, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    url("images/hero.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wine), transparent);
  opacity: 0.4;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  min-height: calc(90vh - 52px);
  position: relative;
  padding: 250px 24px 100px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--wine);
  font-weight: 600;
}

.hero h1,
.section-title h2,
.about-content h2,
.cta-content h2,
.contact-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin-top: 18px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--wine);
}

.hero p {
  font-size: 18px;
  color: #4a4f4f;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(58, 61, 61, 0.1);
}

.hero-stats strong {
  font-size: 24px;
  color: var(--wine);
}

.hero-stats span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 24px;
}

.hero-logo {
  display: none;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wine);
  z-index: 4;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}

.scroll-indicator::before {
  content: "";
  width: 20px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(117, 5, 5, 0.45);
  position: absolute;
  top: -42px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--wine);
  animation: scrollPulse 1.4s infinite ease-in-out;
}


@keyframes scrollPulse {
  0% {
    transform: translateY(-6px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(-6px);
    opacity: 0.2;
  }
}

.hero-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.badge {
  align-self: start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(117, 5, 5, 0.1);
  color: var(--wine);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.placeholder {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(58, 61, 61, 0.2), rgba(181, 190, 190, 0.5));
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-card-media {
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.placeholder.map {
  min-height: 260px;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: var(--paper);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  max-width: 220px;
}

.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.signature,
.experience,
.testimonials {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials {
  background:
    linear-gradient(rgba(246, 246, 246, 0.9), rgba(246, 246, 246, 0.9)),
    url("images/bg-1.png");
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  border-radius: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-more {
  text-align: center;
  margin-top: 32px;
}

.service-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(58, 61, 61, 0.2);
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: var(--wine);
  color: var(--paper);
  border-color: var(--wine);
  box-shadow: 0 10px 20px rgba(117, 5, 5, 0.24);
}

.service-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(58, 61, 61, 0.08);
  display: grid;
  gap: 12px;
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.hidden {
  display: none;
}

.service-media {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(58, 61, 61, 0.18), rgba(117, 5, 5, 0.35));
}

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

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-card p {
  font-size: 13px;
  color: rgba(58, 61, 61, 0.78);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-tag {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(117, 5, 5, 0.12);
  color: var(--wine);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  background: var(--bg);
  padding: 80px 48px;
  border-radius: 32px;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(117, 5, 5, 0.25));
}

.about-content {
  display: grid;
  gap: 16px;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.about-highlights strong {
  color: var(--wine);
  display: block;
}

.difference {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-top: 20px;
}

.difference::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(117, 5, 5, 0.2));
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.difference-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(58, 61, 61, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.difference-card h3 {
  margin-bottom: 12px;
  color: var(--wine);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.experience-card {
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(58, 61, 61, 0.08);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(58, 61, 61, 0.08);
  display: grid;
  gap: 16px;
  align-content: start;
}

.testimonial-stars {
  color: #d4a437;
  letter-spacing: 3px;
  font-size: 15px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(117, 5, 5, 0.25);
  background: var(--paper);
  color: var(--wine);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--wine);
  color: var(--paper);
}

.cta {
  max-width: 1100px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(117, 5, 5, 0.93), rgba(0, 0, 0, 0.9)),
    url("images/bg-2.png");
  background-size: cover;
  background-position: center;
  color: var(--paper);
  padding: 48px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  min-width: 0;
}

.cta-content p {
  padding-bottom: 30px;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form input {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 15px;
}

.multiselect {
  position: relative;
}

.multiselect-trigger {
  width: 100%;
  text-align: left;
  padding: 12px 40px 12px 16px;
  border-radius: 12px;
  border: none;
  background: var(--paper);
  color: rgba(58, 61, 61, 0.55);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23750505' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.multiselect-trigger.has-value {
  color: var(--charcoal);
}

.multiselect-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px;
  max-height: 280px;
  overflow-y: auto;
  display: grid;
  gap: 14px;
}

.multiselect-panel[hidden] {
  display: none;
}

.multiselect-group-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wine);
  margin-bottom: 6px;
}

.multiselect-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  padding: 5px 0;
  cursor: pointer;
}

.multiselect-panel input[type="checkbox"] {
  accent-color: var(--wine);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cta-form .btn {
  justify-self: start;
}

.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

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

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

.contact-info {
  background: var(--paper);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(58, 61, 61, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 20px;
}

.contact-info .address {
  font-size: 18px;
}

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

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

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

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58, 61, 61, 0.1);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(117, 5, 5, 0.04), rgba(181, 190, 190, 0.08));
  border: 1px solid rgba(117, 5, 5, 0.1);
  border-radius: 22px;
}

.signature .inline-cta {
  margin-top: 48px;
}

.inline-cta p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--charcoal);
}

.inline-cta p strong {
  color: var(--wine);
  font-weight: 600;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(58, 61, 61, 0.08);
  border-radius: 18px;
  padding: 0 24px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--wine);
  font-size: 26px;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: rgba(58, 61, 61, 0.8);
  font-size: 15px;
}

.logo {
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--wine);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(117, 5, 5, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  z-index: 50;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #5e0404;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 24px;
    background: var(--paper);
    padding: 24px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 90px;
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-logo {
    display: block;
    width: 250px;
    height: auto;
    margin: 0 auto 24px;
    filter: brightness(0) saturate(100%) invert(18%);
  }

  .site-header .logo {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .site-header.logo-visible .logo {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-wrapper {
    background:
      linear-gradient(180deg, rgba(246, 246, 246, 0.94), rgba(246, 246, 246, 0.88)),
      url("images/hero.png");
    background-size: cover;
    background-position: center;
  }

  .scroll-indicator {
    bottom: 40px;
  }

  .service-grid,
  .difference-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: 80%;
  }

  .floating-card {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  main {
    padding: 0 16px 100px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .about {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .testimonials {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cta {
    padding: 32px;
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .difference-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .testimonial-card {
    flex-basis: 88%;
  }

  .footer-cta form {
    flex-direction: column;
  }
}
