:root {
  --bg: #f6f2eb;
  --surface: #fffdf8;
  --surface-soft: #fcf7ef;
  --ink: #181713;
  --muted: #5f5c55;
  --brand: #9a6338;
  --brand-deep: #5d3519;
  --line: #e8ddcf;
  --radius: 18px;
  --shadow: 0 14px 35px rgba(25, 20, 12, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fffef9 0%, var(--bg) 42%), var(--bg);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--brand-deep), #2e2219);
  color: #f8efe2;
  padding: 0.55rem 4vw;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.92rem;
}

.topbar a {
  text-decoration: none;
  color: #f8efe2;
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: 52px auto;
  column-gap: 0.65rem;
  align-items: center;
  line-height: 1.12;
}

.brand::before {
  content: "";
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  grid-row: 1 / span 2;
  border-radius: 12px;
  background: #fffaf3 url("../images/hs-logo.svg") center/cover no-repeat;
  box-shadow: 0 8px 20px rgba(28, 20, 12, 0.14);
}

.brand-main,
.brand-sub {
  display: block;
  grid-column: 2;
}

.brand-main {
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  height: 2px;
  width: 100%;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 220px;
  padding: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--surface-soft);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: var(--surface);
  font-weight: 700;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

.page-hero {
  min-height: 42vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(17, 13, 10, 0.75), rgba(17, 13, 10, 0.35));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(820px, 92vw);
}

.page-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 0.6rem;
}

.page-hero p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  min-height: 76vh;
  display: none;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide.active {
  display: flex;
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 14, 11, 0.78), rgba(18, 14, 11, 0.38) 56%, rgba(18, 14, 11, 0.14));
}

.slide-content {
  position: relative;
  z-index: 1;
  color: #fffdf9;
  padding: 7rem 0 4rem;
  max-width: 700px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #f2cf9f;
  font-weight: 600;
  font-size: 0.78rem;
}

.slide h1,
.slide h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.06;
  margin-bottom: 0.8rem;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(130deg, var(--brand), #b4743e);
  padding: 0.78rem 1.35rem;
  font-weight: 700;
  border-radius: 999px;
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  gap: 0.55rem;
  z-index: 3;
}

.dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.dot.active {
  background: #f2cf9f;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.4rem;
}

.section-heading p {
  margin: 0 0 0.2rem;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(25, 20, 12, 0.14);
}

.card img {
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
}

.card-content p {
  margin: 0;
  color: var(--muted);
}

.text-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.text-block p {
  margin: 0 0 0.8rem;
  color: #32312c;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.list-block ul {
  margin: 0;
  padding-left: 1.05rem;
}

.cta-band {
  background: linear-gradient(120deg, #f1e1cd, #f8efe4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta-wrap p {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  margin-top: 2rem;
  background: linear-gradient(145deg, #171410, #2b2119);
  color: #eee6d9;
  padding-top: 2.5rem;
}

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

.site-footer p {
  margin-top: 0;
  color: #d9cfbf;
}

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

.copyright {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.92rem;
  padding: 0.8rem 0 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 0.6rem;
}

.contact-card p {
  margin: 0 0 0.4rem;
}

.menu-backdrop {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    right: 4vw;
    top: 85px;
    width: min(280px, 88vw);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 110;
  }

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

  .menu-backdrop.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
    z-index: 100;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.2rem 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0.2rem 0 0.1rem;
    min-width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .dropdown-toggle::after {
    transform: rotate(225deg) translateY(-1px);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    text-align: center;
  }

  .slide {
    min-height: 66vh;
  }

  .slide-content {
    padding: 5.5rem 0 3rem;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
