﻿:root {
  --ink: #0b1f2a;
  --ink-2: #274354;
  --cream: #f6f2ea;
  --sand: #e7dccb;
  --accent: #ff7a3d;
  --accent-2: #1fae9b;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(11, 31, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8f0 0%, var(--cream) 45%, #efe7da 100%);
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent);
}

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

.page-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(246, 242, 234, 0.98) 0%, rgba(246, 242, 234, 0.9) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 234, 0.92);
  border-bottom: 1px solid rgba(39, 67, 84, 0.12);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand__mark {
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.brand__text {
  font-size: 0.95rem;
}

.site-header__toggle {
  border: 1px solid rgba(39, 67, 84, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--cream);
}

.site-header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.35), transparent 65%);
  z-index: 0;
}

.hero--photos::before,
.hero--about::before,
.hero--contact::before,
.hero--detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero--photos::before {
  background-image: url("../img/hero.jpg");
}

.hero--about::before {
  background-image: url("../img/about.jpg");
}

.hero--contact::before {
  background-image: url("../img/hero.jpg");
}

.hero--detail::before {
  background-image: url("../img/img-01-big.jpg");
}

.hero--videos {
  padding: 110px 0 90px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 42, 0.75), rgba(11, 31, 42, 0.35));
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-2);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  margin: 12px 0 16px;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-2);
}

.hero--videos h1,
.hero--videos p.lead,
.hero--videos .eyebrow {
  color: #f7f2eb;
}

.hero--videos .hero__stat {
  color: #f7f2eb;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.search-bar input {
  border: 0;
  outline: none;
  background: transparent;
  flex: 1 1 200px;
  font-size: 1rem;
}

.search-bar button {
  border: 0;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.hero__stat span:first-child {
  font-size: 1.6rem;
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.chip {
  border: 1px solid rgba(11, 31, 42, 0.6);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: #ffffff;
  border-top: 1px solid rgba(39, 67, 84, 0.1);
  border-bottom: 1px solid rgba(39, 67, 84, 0.1);
}

.section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin: 0;
}

.section-title .note {
  color: var(--ink-2);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.media-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(39, 67, 84, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 31, 42, 0.18);
}

.media-card__media {
  position: relative;
}

.media-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.media-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-2);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card__body {
  padding: 16px 18px 20px;
}

.media-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.media-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 600;
}

.page-dots {
  display: inline-flex;
  gap: 10px;
}

.page-dots a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(39, 67, 84, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.page-dots a.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.card-surface {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(39, 67, 84, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(39, 67, 84, 0.12);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.feature-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 12px;
}

.form-card label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card .form-control,
.form-card select,
.form-card textarea {
  border-radius: 14px;
  border: 1px solid rgba(39, 67, 84, 0.2);
  padding: 12px 14px;
}

.form-card button {
  border: 0;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.info-list i {
  color: var(--accent-2);
  margin-right: 8px;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 32px;
}

.detail-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-panel h3 {
  margin-top: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 174, 155, 0.12);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-footer {
  background: var(--ink);
  color: #f6f2ea;
  padding: 54px 0 40px;
  margin-top: 40px;
}

.site-footer h3 {
  font-family: "Fraunces", serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #f6f2ea;
}

.footer-social {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 12px 0 0;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #f6f2ea;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .site-header__inner {
    padding: 16px 20px;
  }

  .site-header__nav {
    justify-content: flex-start;
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 70px 0 60px;
  }

  .search-bar {
    border-radius: 18px;
  }

  .media-card__media img {
    height: 190px;
  }
}
