@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --orange: #df6f32;
  --orange-dark: #b84e1f;
  --cream: #f8f3ec;
  --paper: #fffdfa;
  --ink: #282521;
  --muted: #706a63;
  --line: #e8e0d6;
  --green: #31584c;
  --shadow: 0 24px 70px rgba(57, 42, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid rgba(232, 224, 214, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner,
.callout-inner,
.footer-inner {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 165px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.main-nav .nav-cta {
  padding: 0.68rem 1.15rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: white;
  background: var(--orange);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  height: min(850px, 92vh);
  min-height: 680px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: white;
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 22, 19, 0.8) 0%, rgba(24, 22, 19, 0.46) 48%, rgba(24, 22, 19, 0.05) 80%),
    linear-gradient(0deg, rgba(24, 22, 19, 0.3), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 3rem));
  margin: 6rem auto 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--orange);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.3rem;
  font-size: clamp(3.2rem, 6.3vw, 6.3rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.75rem 1.45rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.button-ghost:hover {
  background: white;
  color: var(--ink);
}

.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 54%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--orange);
}

.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 50%;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 180ms ease, background 180ms ease;
  cursor: pointer;
}

.slider-dots button.active {
  width: 28px;
  background: white;
}

.section {
  padding: 7.5rem 0;
  scroll-margin-top: 86px;
}

.split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1.4rem 15% 18% -1.4rem;
  border-radius: 0.4rem;
  background: var(--cream);
}

.intro-image img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  border-radius: 0.4rem;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -2rem;
  bottom: 2.2rem;
  width: 160px;
  padding: 1.25rem;
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.experience-badge span {
  font-size: 0.78rem;
}

.intro-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
  align-items: center;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.benefits {
  background: var(--cream);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 3.2rem;
}

.section-heading > p:last-child {
  color: var(--muted);
}

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

.benefit-card {
  position: relative;
  min-height: 345px;
  padding: 2.2rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
}

.benefit-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-1rem);
}

.benefit-number {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.featured .benefit-number {
  color: rgba(255, 255, 255, 0.13);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 2.5rem 0 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  font-size: 1.5rem;
}

.featured .benefit-icon {
  background: var(--orange);
  color: white;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  background: var(--paper);
}

.gallery-heading {
  margin-bottom: 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 340px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cream);
  cursor: zoom-in;
}

.gallery-item.item-1,
.gallery-item.item-5 {
  grid-row: span 2;
}

.gallery-item.item-3 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 22, 18, 0.68), transparent 45%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
}

.gallery-item:hover span {
  transform: translateY(0);
}

.callout {
  padding: 5.5rem 0;
  background: var(--orange);
  color: white;
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.callout h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: var(--ink);
}

.contact {
  background: #24221f;
  color: white;
}

.contact-heading {
  margin-bottom: 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0.5rem;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 50%);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform 500ms ease;
}

.map-card:hover img {
  transform: scale(1.035);
}

.map-card > span {
  position: absolute;
  z-index: 2;
  left: 1.6rem;
  bottom: 1.4rem;
  font-weight: 700;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.contact-card {
  min-height: 98px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.4rem;
  transition: border-color 180ms ease, background 180ms ease;
}

a.contact-card:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.04);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 1.1rem;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0.2rem 0 0;
  line-height: 1.45;
}

footer {
  padding: 3rem 0;
  background: #191815;
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-inner img {
  width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  z-index: 999;
  inset: 0;
  padding: 3rem;
  display: grid;
  place-items: center;
  background: rgba(17, 16, 14, 0.94);
  color: white;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1050px, 92vw);
  max-height: 78vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  border: 0;
  background: none;
  color: white;
  font-size: 2.8rem;
  cursor: pointer;
}

.lightbox p {
  position: absolute;
  bottom: 1rem;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 87px;
    left: 0;
    width: 100%;
    padding: 1.2rem 1.5rem 1.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    padding: 0.85rem 0;
  }

  .main-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .slider-arrow {
    display: none;
  }

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

  .intro-image {
    width: min(640px, 92%);
  }

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

  .benefit-card,
  .benefit-card.featured {
    min-height: auto;
    transform: none;
  }

  .benefit-icon {
    margin-bottom: 2rem;
  }

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

  .callout-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .header-inner,
  .section-inner,
  .callout-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 2rem, 1180px);
  }

  .header-inner {
    height: 76px;
  }

  .brand img {
    width: 138px;
  }

  .main-nav {
    top: 75px;
  }

  .hero {
    min-height: 650px;
    height: 90vh;
  }

  .hero-content {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 5rem 0;
  }

  .experience-badge {
    right: -0.8rem;
    bottom: -1.5rem;
  }

  .intro-copy {
    padding-top: 1.5rem;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    gap: 0.5rem;
  }

  .gallery-item.item-1,
  .gallery-item.item-5 {
    grid-row: span 1;
  }

  .gallery-item.item-3 {
    grid-column: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  .callout {
    padding: 4.5rem 0;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    justify-items: center;
  }

  .lightbox {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
