:root {
  --bg: #f8f3e7;
  --surface: #fffaf2;
  --surface-soft: #f0e2bf;
  --surface-dark: #0f1d18;
  --card-dark: #132821;
  --text: #17211b;
  --muted: #5f675e;
  --gold: #b48826;
  --gold-soft: #dfc16f;
  --line: rgba(23, 33, 27, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 24, 20, 0.12);
  --radius: 28px;
  --container: min(1160px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 193, 111, 0.28), transparent 26%),
    linear-gradient(180deg, #fbf8f0 0%, #f5eedf 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 240, 0.88);
  border-bottom: 1px solid rgba(23, 33, 27, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.brand-text strong {
  font-size: 1.15rem;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.98rem;
}

.menu-toggle,
.button {
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.menu-toggle {
  display: none;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero,
.section {
  padding: 4.8rem 0;
}

.hero-grid,
.project-highlight,
.location-grid,
.contact-shell {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.project-highlight,
.location-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1,
h2,
h3,
.project-tag,
.address-label {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.9rem;
}

.hero-text,
.hero-note,
.section-copy,
.project-copy p,
.detail-list,
.address-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-note {
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
}

.button:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
}

.hero-card,
.project-copy,
.project-visual,
.visual-card,
.location-map,
.address-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.hero-card img,
.project-visual img,
.visual-card img,
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-shell {
  display: grid;
  gap: 1.8rem;
}

.project-copy {
  padding: 1.8rem;
}

.project-tag,
.address-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(223, 193, 111, 0.14), transparent 22%),
    linear-gradient(180deg, #0d1714 0%, #14241f 100%);
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

.section-dark .section-heading,
.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
}

.gallery-carousel,
.gallery-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.gallery-carousel {
  overflow: hidden;
  padding: 1rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide img,
.gallery-card img {
  width: 100%;
  height: min(70vh, 620px);
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
}

.carousel-button {
  min-width: 96px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(180, 136, 38, 0.28);
  cursor: pointer;
}

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

.visual-card {
  background: rgba(255, 255, 255, 0.05);
}

.contact-section {
  padding-bottom: 5.5rem;
}

.contact-shell {
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.95), rgba(245, 238, 223, 0.9)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.address-card {
  padding: 1.5rem;
}

.address-card p {
  margin: 0.35rem 0;
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid rgba(23, 33, 27, 0.08);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .footer-shell {
    display: grid;
  }

  .carousel-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    max-width: 8ch;
  }
}
