:root {
  --bg: #f7f2ec;
  --surface: #fffdf9;
  --surface-alt: #f0e5da;
  --surface-deep: #173335;
  --surface-dark: #102527;
  --line: rgba(20, 42, 44, 0.12);
  --forest: #1b4a4a;
  --forest-soft: #2d6162;
  --sand: #b8835b;
  --sand-soft: #d2ab8d;
  --ink: #162125;
  --muted: #5e696e;
  --white: #ffffff;
  --container: min(1180px, calc(100% - 48px));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 30px 70px rgba(17, 30, 31, 0.14);
  --shadow-md: 0 18px 40px rgba(17, 30, 31, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(210, 171, 141, 0.22), transparent 28%),
    linear-gradient(180deg, #f8f4ef 0%, #f6efe8 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.page-shell {
  overflow: clip;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.46);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-title,
.page-title,
.card-title,
.detail-title,
.footer-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 0.96;
}

.section-copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  /* max-width: 640px; */
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--sand);
  color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgb(184 131 91);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 0;
  background: rgba(16, 37, 39, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 37, 39, 0.96);
  box-shadow: 0 18px 46px rgba(5, 11, 12, 0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

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

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-menu {
  gap: 10px;
}

.nav-menu > a,
.nav-link-row > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-menu > a:hover,
.nav-link-row > a:hover,
.nav-menu > a[aria-current="page"],
.nav-link-row > a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-item {
  position: relative;
}

.nav-link-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.submenu-toggle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.92);
}

.submenu-toggle span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 252, 249, 0.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.92rem;
}

.dropdown-panel a:hover,
.dropdown-panel a[aria-current="page"] {
  background: rgba(27, 74, 74, 0.08);
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-hero {
  position: relative;
  min-height: 88svh;
  padding: 168px 0 88px;
  display: flex;
  align-items: end;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 12, 0.26), rgba(5, 11, 12, 0.7)),
    linear-gradient(90deg, rgba(9, 22, 24, 0.68), rgba(9, 22, 24, 0.2));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 32px;
  align-items: end;
}

.page-title {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 0.9;
}

.page-lead {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.hero-note {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-note p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.hero-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-grid,
.story-grid,
.detail-grid,
.cta-grid,
.contact-grid,
.visit-grid {
  display: grid;
  gap: 30px;
}

.split-grid,
.story-grid,
.contact-grid,
.visit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 100%;
}

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

.text-block {
  align-self: center;
}

.text-block p + p {
  margin-top: 16px;
}

.text-block ul {
  margin-top: 20px;
  padding-left: 18px;
  color: var(--muted);
}

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

.card,
.feature-card,
.stat-card,
.contact-card,
.store-card,
.folio-card,
.timeline-item,
.form-shell,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-md);
}

.card,
.feature-card,
.stat-card,
.contact-card,
.store-card,
.timeline-item,
.cta-card {
  padding: 28px;
}

.card-title,
.detail-title {
  font-size: 2rem;
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 14px;
}

.card p,
.feature-card p,
.stat-card p,
.contact-card p,
.store-card p,
.timeline-item p,
.cta-card p {
  color: var(--muted);
}

.card-meta,
.info-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.card-list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.feature-card {
  overflow: hidden;
  padding: 0;
}

.feature-media {
  height: 260px;
}

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

.feature-content {
  padding: 26px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.9;
  color: var(--forest);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline-item {
  position: relative;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.folio-card {
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
}

.folio-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.folio-card:hover img {
  transform: scale(1.04);
}

.folio-content {
  padding: 24px;
}

.folio-content p {
  color: var(--muted);
}

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

.store-thumb {
  overflow: hidden;
  border-radius: 20px;
  margin: -28px -28px 18px;
}

.store-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.store-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.store-card a,
.contact-card a {
  color: var(--forest);
  font-weight: 700;
}

.contact-info-stack {
  display: grid;
  gap: 26px;
  align-content: start;
}

.contact-heading {
  margin-bottom: 0;
}

.contact-methods {
  display: grid;
  gap: 18px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sand-soft), var(--forest));
}

.contact-card p + p {
  margin-top: 6px;
}

.contact-card a {
  display: inline-flex;
  margin-top: 16px;
}

.contact-visit-note {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(240, 229, 218, 0.86), rgba(255, 253, 249, 0.96));
  border: 1px solid rgba(20, 42, 44, 0.1);
}

.contact-visit-note p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-visit-note .btn {
  margin-top: 20px;
}

.visit-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(27, 74, 74, 0.96), rgba(16, 37, 39, 0.98));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.visit-panel p,
.visit-panel li {
  color: rgba(255, 255, 255, 0.8);
}

.visit-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 18px;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(19, 38, 39, 0.12), rgba(19, 38, 39, 0.12)),
    url("../images/main/AdobeStock_6.jpeg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
}

.map-badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 14px 32px rgba(10, 18, 19, 0.18);
  max-width: 220px;
}

.map-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
}

.map-badge.one {
  left: 9%;
  top: 20%;
}

.map-badge.two {
  right: 12%;
  top: 40%;
}

.map-badge.three {
  left: 26%;
  bottom: 12%;
}

.form-shell {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 245, 239, 0.98));
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 131, 91, 0.16);
  border-radius: 20px;
  pointer-events: none;
}

.form-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.form-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(20, 42, 44, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #849096;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(184, 131, 91, 0.65);
  box-shadow: 0 0 0 4px rgba(210, 171, 141, 0.18);
  background: #fff;
}

.form-field textarea {
  min-height: 168px;
  resize: vertical;
}

.cta-band {
  padding: 54px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 37, 39, 0.98), rgba(27, 74, 74, 0.92)),
    url("../images/main/AdobeStock_5.jpeg") center/cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 78px 0 28px;
  background: #0f2028;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 30px;
}

.footer-copy {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-title {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .grid-cards,
  .folio-grid,
  .store-grid,
  .detail-grid,
  .timeline,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-grid,
  .story-grid,
  .cta-grid,
  .contact-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

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

  .nav-menu,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .site-header.is-menu-open .nav-menu,
  .site-header.is-menu-open .nav-actions {
    display: grid;
  }

  .nav-menu {
    order: 3;
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(9, 22, 24, 0.98);
  }

  .nav-menu > a,
  .nav-item,
  .dropdown-panel a,
  .nav-link-row > a {
    width: 100%;
  }

  .nav-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .nav-menu > a,
  .nav-link-row > a {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .submenu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-panel {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.is-open .dropdown-panel {
    display: block;
  }

  .nav-item.is-open .submenu-toggle span {
    transform: rotate(-135deg) translateX(-1px);
  }

  .nav-actions {
    gap: 0;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .page-hero {
    min-height: auto;
    padding-top: 148px;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .brand-logo {
    width: 176px;
  }

  .page-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .grid-cards,
  .folio-grid,
  .store-grid,
  .detail-grid,
  .timeline,
  .stats-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    height: 220px;
  }

  .cta-band,
  .visit-panel,
  .form-shell,
  .card,
  .feature-content,
  .stat-card,
  .contact-card,
  .store-card,
  .timeline-item {
    padding: 24px;
  }

  .map-card {
    min-height: 500px;
  }

  .map-badge {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px 0;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .page-hero {
    padding-top: 138px;
    padding-bottom: 70px;
  }

  .map-badge.one {
    left: 6%;
    top: 15%;
  }

  .map-badge.two {
    right: 6%;
    top: 42%;
  }

  .map-badge.three {
    left: 12%;
    bottom: 10%;
  }
}
