@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --bg-base: #0f0d0b;
  --bg-card: #1a1714;
  --bg-section-alt: #141210;
  --accent-primary: #d97706;
  --accent-secondary: #92400e;
  --text-primary: #f5f0e8;
  --text-muted: #8c8070;
  --gradient-hero: linear-gradient(160deg, #0f0d0b 0%, #1c1815 100%);
  --radius-card: 2px;
  --transition: 0.25s ease;
  --container: min(1180px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  line-height: 1.6;
  background: var(--bg-base);
  color: var(--text-primary);
}

section,
header,
footer,
main,
.container {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.7rem);
}

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

p {
  color: var(--text-muted);
}

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

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.06rem, 1rem + 0.6vw, 1.3rem);
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 70px;
  backdrop-filter: blur(12px);
  background: rgba(15, 13, 11, 0.83);
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
}

.header.scrolled {
  border-bottom-color: rgba(217, 119, 6, 0.4);
}

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

.nav-toggle {
  display: none;
  border: 1px solid rgba(217, 119, 6, 0.45);
  background: transparent;
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  font-size: 1.2rem;
}

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

.nav-list a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  border-color: var(--accent-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.82rem 1.3rem;
  border-radius: 2px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform var(--transition), background var(--transition), color var(--transition),
    border-color var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  background: #d97706;
  color: #0f0d0b;
  border-color: #d97706;
}

.btn-primary:hover {
  background: #f59e0b;
  border-color: #f59e0b;
}

.btn-secondary {
  border-color: #d97706;
  color: #d97706;
  background: transparent;
}

.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(130deg, rgba(15, 13, 11, 0.84), rgba(146, 64, 14, 0.5)),
    url('images/hero.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-hero {
  min-height: 55vh;
}

.page-hero::before {
  background-image: linear-gradient(130deg, rgba(15, 13, 11, 0.86), rgba(146, 64, 14, 0.45)),
    var(--hero-image);
}

.hero-content {
  max-width: 760px;
  padding: 2.2rem 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 0.9rem + 0.65vw, 1.3rem);
  color: var(--text-primary);
  margin: 1.1rem 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.section {
  padding: clamp(3rem, 2rem + 4vw, 6rem) 0;
}

.section-alt {
  background-color: var(--bg-section-alt);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(139, 90, 43, 0.04) 0px,
    rgba(139, 90, 43, 0.04) 2px,
    transparent 2px,
    transparent 10px
  );
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.divider {
  height: 26px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(217, 119, 6, 0.35) 8% 92%, transparent 92% 100%),
    radial-gradient(circle at 12% 50%, rgba(217, 119, 6, 0.75) 0 4px, transparent 4px),
    radial-gradient(circle at 88% 50%, rgba(217, 119, 6, 0.75) 0 4px, transparent 4px);
  border-top: 1px solid rgba(217, 119, 6, 0.35);
  border-bottom: 1px solid rgba(217, 119, 6, 0.35);
}

.stats-strip {
  border-top: 1px solid rgba(217, 119, 6, 0.2);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  background: #13100e;
}

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

.stats-grid div {
  text-align: center;
  padding: 1.2rem 0.5rem;
  border-right: 1px solid rgba(217, 119, 6, 0.15);
  color: var(--text-primary);
  font-weight: 500;
}

.stats-grid div:last-child {
  border-right: 0;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(217, 119, 6, 0.8);
  box-shadow: 4px 4px 0 rgba(217, 119, 6, 0.3);
  transform: translate(-2px, -2px);
}

.card-body {
  padding: 1rem;
}

.price {
  color: var(--accent-primary);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.image-box img {
  width: 100%;
  height: 360px;
  border-radius: 2px;
  border: 1px solid rgba(217, 119, 6, 0.24);
}

.bg-image-panel {
  min-height: 420px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.bg-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 13, 11, 0.76), rgba(146, 64, 14, 0.35)), var(--bg-panel-image);
  background-size: cover;
  background-position: center;
}

.bg-image-panel .overlay-text {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
}

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

.gallery-grid img {
  height: 320px;
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 2px;
}

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

.staff-card img {
  height: 300px;
  width: 100%;
}

.badge {
  display: inline-block;
  margin-bottom: 0.8rem;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.55);
  color: #f8d8ae;
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contact-list a {
  color: var(--accent-primary);
}

.legal a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(217, 119, 6, 0.3);
  padding-bottom: 0.4rem;
}

.form-card,
.text-block {
  background: var(--bg-card);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 2px;
  padding: 1rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  background: #0d0b09;
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: var(--text-primary);
  border-radius: 2px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  border-top: 1px solid rgba(217, 119, 6, 0.2);
  padding: 2.2rem 0;
}

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

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  background: #1f1a16;
  border: 1px solid rgba(217, 119, 6, 0.45);
  border-radius: 2px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cookie-banner a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(9, 8, 6, 0.74);
  padding: 1rem;
}

.modal-box {
  width: min(450px, 100%);
  background: #191511;
  border: 1px solid rgba(217, 119, 6, 0.5);
  border-radius: 2px;
  padding: 1.2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 0.5rem;
  top: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

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

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

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #120f0d;
    border-bottom: 1px solid rgba(217, 119, 6, 0.25);
    padding: 0.8rem 4vw 1rem;
    transform-origin: top;
  }

  .nav[hidden] {
    display: none !important;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .gallery-grid,
  .staff-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-box img,
  .gallery-grid img {
    height: 260px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.6rem 0;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

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

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 119, 6, 0.15);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }
}

/* Fix: backdrop-filter + overflow-x:hidden on the sticky header clipped the
   dropdown nav (rendered below the 70px header box). Neutralise on mobile. */
@media (max-width: 960px) {
  .header {
    overflow: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #0f0d0b;
  }

  .header .header-inner {
    overflow: visible;
  }
}
