:root {
  --charcoal: #303030;
  --paper: #ffffff;
  --cream: #f9f5ef;
  --red: #a01619;
  --espresso: #5A3A29;
  --warm-brown: #7A5A44;
  --text: #555555;
  --gold: #b58a43;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  background: var(--charcoal);
}

.brand {
  color: #d7d7d7;
  text-decoration: none;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: 0.18em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: clamp(28px, 6vw, 70px);
}

.nav-links a,
.header-icons span {
  color: #c9c9c9;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.35em;
}

.header-icons {
  justify-self: end;
  display: flex;
  gap: 22px;
  color: #c9c9c9;
  font-size: 24px;
  line-height: 1;
}

.hero-image {
  width: 100%;
  height: clamp(215px, 33vw, 405px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.intro {
  text-align: center;
  padding: 28px 20px 24px;
  background: rgba(255, 255, 255, 0.94);
}

.intro h1 {
  margin: 0;
  color: var(--espresso);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 5.5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
}

.intro p {
  margin: 12px 0 24px;
  font-size: clamp(12px, 1.7vw, 16px);
  color: var(--warm-brown);
}

.intro-spacer {
  height: clamp(20px, 3vw, 32px);
}

.showcase {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 clamp(36px, 8vw, 110px);
  overflow: hidden;
  background: linear-gradient(90deg, #ececeb 0, #ffffff 10%, #ffffff 90%, #ececeb 100%);
}

.carousel {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  aspect-ratio: 1536 / 1024;
  max-height: 640px;
  overflow: visible;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(0) scale(0.94);
  filter: grayscale(18%) brightness(0.84);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
}

.carousel-slide.is-prev,
.carousel-slide.is-next {
  z-index: 1;
  opacity: 0.28;
}

.carousel-slide.is-prev { transform: translateX(-88%) scale(0.92); }
.carousel-slide.is-next { transform: translateX(88%) scale(0.92); }

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 44px;
  height: 62px;
  border: 0;
  background: rgba(255,255,255,0.72);
  color: #777;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.carousel-button--prev { left: 10px; }
.carousel-button--next { right: 10px; }
.carousel-button:hover { background: rgba(255,255,255,0.9); }

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.45);
  padding: 0;
  cursor: pointer;
}

.carousel-dots button.is-active { background: var(--gold); }

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 26px 18px;
  color: #111;
  font-size: clamp(14px, 2vw, 18px);
}

.site-footer a {
  color: #111;
  text-decoration: none;
}

.chat-button {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 30;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px 18px;
  }
  .nav-links { grid-column: 1 / -1; justify-content: center; order: 3; }
  .header-icons { gap: 14px; font-size: 20px; }
  .showcase { padding: 0 24px; }
  .carousel-button { display: none; }
  .site-footer { gap: 12px; flex-direction: column; }
  .site-footer span { display: none; }
}
