:root {
  --cream: #fbf3e7;
  --cream-alt: #f4e6d3;
  --terracotta: #c1592c;
  --terracotta-dark: #9c4522;
  --burgundy: #7a2e2e;
  --gold: #d9a441;
  --ink: #3a2a1e;
  --ink-soft: #6b5847;
  --white: #fffdf9;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(122, 46, 46, 0.10);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--burgundy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--terracotta-dark); text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(122, 46, 46, 0.08);
}

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

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

.logo-mark {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-mark.small { width: 40px; height: 40px; font-size: 1rem; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
}

.logo-text strong { color: var(--burgundy); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--terracotta-dark); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--terracotta-dark); }

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 120px;
  text-align: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 27, 17, 0.55) 0%, rgba(58, 27, 17, 0.72) 60%, rgba(58, 27, 17, 0.88) 100%);
  z-index: -1;
}

.hero-inner { max-width: 760px; margin: 0 auto; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 0.5em;
  color: var(--white);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2em;
  color: #f1e3d3;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary:hover { transform: translateY(-2px); background: var(--terracotta-dark); }

.btn-outline {
  border: 2px solid var(--terracotta);
  color: var(--terracotta-dark) !important;
}

.btn-outline:hover { background: var(--terracotta); color: var(--white) !important; }

.hero .btn-outline {
  border-color: var(--white);
  color: var(--white) !important;
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--terracotta-dark) !important;
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--cream-alt); }

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 620px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { margin: 0; font-size: 0.92rem; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.card:hover { transform: translateY(-4px); }

.card-icon { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: 1.1rem; }
.card p { margin: 0; font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: stretch;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.location-details h3 { font-size: 1.05rem; margin-bottom: 4px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item a, .contact-item span {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}

.social-icons { display: flex; gap: 16px; margin-top: 4px; }
.social-icons a { font-weight: 700; color: var(--terracotta-dark); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
}

.contact-form input, .contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(122, 46, 46, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}

.contact-form button { margin-top: 16px; border: none; cursor: pointer; }

/* Footer */
.site-footer {
  background: var(--burgundy);
  color: #f1e3d3;
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col p, .footer-col a {
  color: #e8d7c3;
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(241, 227, 211, 0.15);
  padding: 20px 0 24px;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-bottom p { margin: 0; font-size: 0.85rem; color: #d8c4ac; }

.credit { font-size: 0.8rem; opacity: 0.85; }
.credit strong { color: var(--gold); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
