:root {
  --wine: #6e1830;
  --wine-dark: #4a0f21;
  --gold: #c8a75a;
  --gold-soft: #e7d2a2;
  --text: #1f1a18;
  --muted: #635a56;
  --bg: #ffffff;
  --panel: #fff9f4;
  --border: rgba(110, 24, 48, 0.12);
  --shadow: 0 18px 50px rgba(59, 12, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110, 24, 48, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  box-shadow: 0 6px 18px rgba(110, 24, 48, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--wine-dark);
}

.brand-role {
  font-size: 0.92rem;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.menu a:hover {
  color: var(--wine);
}

.menu-cta {
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff !important;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--wine-dark);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(200, 167, 90, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(110, 24, 48, 0.09), transparent 28%),
    #ffffff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(200, 167, 90, 0.18), transparent 70%);
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: -130px;
  left: -70px;
  background: radial-gradient(circle, rgba(110, 24, 48, 0.12), transparent 70%);
}

.hero-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.8rem;
}

.hero h1,
.section-heading h2,
.values-panel h2,
.location-copy h2,
.contact-box h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  margin: 0;
  color: var(--wine-dark);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  margin-bottom: 0.75rem;
}

.hero-role {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero-text,
.section-heading p,
.location-copy p,
.contact-box p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  box-shadow: 0 12px 28px rgba(110, 24, 48, 0.22);
}

.btn-secondary {
  color: var(--wine-dark);
  background: white;
  border: 1px solid rgba(200, 167, 90, 0.7);
}

.hero-card,
.location-card,
.contact-box,
.values-panel,
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card {
  padding: 1.1rem;
}

.logo-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background: linear-gradient(160deg, var(--wine-dark), #14070b 65%);
  padding: 1rem;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 167, 90, 0.35);
  border-radius: 22px;
  pointer-events: none;
}

.logo-frame img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.section {
  padding: 5rem 0;
}

.centered {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.values-panel h2,
.location-copy h2,
.contact-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.intro {
  padding-top: 2.5rem;
}

.services {
  background: linear-gradient(180deg, #fff 0%, #fff8f1 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(200, 167, 90, 0.2), transparent 70%);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: white;
  border-radius: 16px;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--wine-dark);
}

.service-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.service-card li {
  margin-bottom: 0.8rem;
  color: var(--text);
}

.values {
  background: white;
}

.values-panel {
  padding: 3rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(140deg, rgba(110, 24, 48, 0.96), rgba(61, 12, 29, 0.98)),
    white;
  color: white;
  position: relative;
}

.values-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(231, 210, 162, 0.35);
  pointer-events: none;
}

.values-panel h2,
.values-panel .quote,
.values-panel .values-sub,
.values-panel strong {
  position: relative;
  z-index: 1;
}

.values-panel h2 {
  color: white;
}

.quote {
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.values-sub {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.values-panel strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.location-card {
  padding: 2rem;
  background: var(--panel);
}

.pin {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: white;
  margin-bottom: 1rem;
}

.contact {
  padding-top: 2rem;
}

.contact-box {
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fff7ee 100%);
}

.footer {
  background: var(--wine-dark);
  color: white;
  padding: 1.4rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p,
.footer strong {
  margin: 0;
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 980px) {
  .hero-grid,
  .location-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(110, 24, 48, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 1.3rem;
  }

  .brand-role {
    font-size: 0.82rem;
  }

  .hero h1 {
    line-height: 1;
  }

  .service-card,
  .values-panel,
  .contact-box,
  .location-card {
    border-radius: 22px;
  }

  .section {
    padding: 4rem 0;
  }
}
