:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #4a4a4a;
  --line: #e8e8e8;
  --line-strong: #c6a249;
  --accent: #c6a249;
  --accent-dark: #a58431;
  --radius: 0;
  --shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.page-grid {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--paper);
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.78rem 0.9rem;
  border-right: 1px solid var(--line);
}

.site-nav a:last-child {
  border-right: 0;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: #f8f5ec;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 10vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  z-index: 2;
}

.hero::before {
  top: 18px;
  left: 18px;
  border-right: 0;
  border-bottom: 0;
}

.hero::after {
  right: 18px;
  bottom: 18px;
  border-left: 0;
  border-top: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  max-width: 15ch;
}

.hero-copy p {
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 58ch;
}

.actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.75rem 1.1rem;
}

.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
}

.hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}

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

.section {
  padding: clamp(3rem, 8vw, 5.6rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

.section-header p,
.body-text,
.card p,
.timeline p,
.quote,
.detail p,
.list li,
.stat p,
.callout p {
  color: var(--muted);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 0.4rem;
}

.split {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.callout {
  border: 1px solid var(--line-strong);
  background: #fbf8f1;
  border-radius: 16px;
  padding: 1rem;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.9rem;
}

.stat .num {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-dark);
  font-weight: 800;
}

.gallery-grid {
  columns: 3 250px;
  column-gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.quote {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
  margin: 0;
}

.quote strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink);
  font-size: 0.86rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
}

.form button {
  cursor: pointer;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fff;
}

.detail-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.detail {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
}

.review-carousel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  height: 360px;
  display: flex;
  flex-direction: column;
}

.review-track {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.review-slide {
  display: none;
  flex: 1 1 0;
  height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}

.review-slide.is-visible {
  display: block;
}

.review-slide.is-active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.01);
}

.review-slide.is-side {
  filter: blur(1.6px);
  opacity: 0.9;
}

.review-stars {
  margin: 0;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
}

.review-text {
  margin: 0.55rem 0 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}

.review-author {
  margin: 0.75rem 0 0;
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0 1rem;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0 0.7rem;
}

.review-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.review-arrow:hover {
  background: #f8f5ec;
}

.review-carousel.is-sliding .review-track {
  animation: reviewShift 0.45s ease;
}

@keyframes reviewShift {
  from {
    transform: translateX(22px);
    opacity: 0.9;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d3d3;
}

.review-dot.active {
  background: var(--accent-dark);
}

.map-embed {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 760px) {
  .review-carousel {
    height: auto;
    min-height: 320px;
  }

  .review-track {
    padding: 0.85rem;
    gap: 0;
  }

  .review-slide {
    margin-bottom: 0;
    min-height: 240px;
  }

  .review-slide.is-side {
    filter: blur(0);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .hero-layout,
  .split,
  .contact-wrap,
  .quote-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid .card:last-child,
  .quote-grid .quote:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .page-grid {
    border-left: 0;
    border-right: 0;
  }

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

  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    border-radius: 16px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .site-nav a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-layout,
  .split,
  .contact-wrap,
  .quote-grid,
  .card-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero::before,
  .hero::after {
    display: none;
  }
}

/* Hard-edge refresh + clean section tinting */
.site-nav,
.menu-toggle,
.hero-copy,
.hero-media,
.card,
.surface,
.callout,
.stat,
.quote,
.step,
.form,
.form input,
.form select,
.form textarea,
.review-carousel,
.review-slide,
.map-embed,
.badge,
.btn,
.detail,
.review-arrow,
.contact-wrap,
.topbar {
  border-radius: 0 !important;
}

.brand span {
  display: none !important;
}

.hero {
  background: #fbfbf9;
}

.section {
  background: #ffffff;
}

main .section:nth-of-type(even) {
  background: #f5f5f3;
}

.footer {
  background: #f7f7f5;
}
