:root {
  --dark: #352208;
  --copper: #b3824a;
  --fawn: #e1bb80;
  --ivory: #fff9ec;
  --olive: #6c7a0e;
  --dark-10: rgba(53, 34, 8, 0.1);
  --nav-h: 88px;
  --ease: 0.24s ease;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--ivory);
  border-bottom: 1px solid var(--dark-10);
  display: flex;
  align-items: center;
  transition: box-shadow var(--ease);
}
.navbar.navbar-accent {
  background: #e1bb80;
}

.navbar.navbar-accent .nav-links a {
  opacity: 1;
  color: var(--dark);
}

.navbar.navbar-accent .btn-nav {
  background: var(--dark);
  border-color: var(--dark);
}

.navbar.shadowed {
  box-shadow: 0 4px 24px rgba(53, 34, 8, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 76px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.65;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.24s ease;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--copper);
  border-bottom-color: var(--copper);
}
.nav-links a.active {
  opacity: 1;
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.nav-cta {
  margin-left: 16px;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid var(--dark);
  background: var(--dark);
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.24s ease;
}
.btn-nav:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(179, 130, 74, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.24s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ivory);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color var(--ease);
}
.mobile-drawer a:hover {
  color: var(--copper);
}
.mobile-drawer .btn-nav:hover {
  color: var(--ivory);
}
.mobile-drawer .btn-nav {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 13px 36px;
  margin-top: 8px;
  color: var(--ivory);
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-inner {
    padding: 0 24px;
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(53, 34, 8, 0.55) 0%,
    rgba(53, 34, 8, 0.25) 45%,
    rgba(53, 34, 8, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ivory);
}

.hero-headline em {
  font-style: normal;
  color: var(--fawn);
}

.hero-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 248, 231, 0.8);
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.24s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--ivory);
}
.btn-dark:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 130, 74, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 248, 231, 0.6);
  color: var(--ivory);
}
.btn-ghost:hover {
  background: rgba(255, 248, 231, 0.1);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-height: 560px;
  border-top: 1px solid var(--dark-10);
}

.split-img {
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 48px;
}

.split-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(53,34,8,.7);
  max-width: 480px;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .split-img {
    height: 300px;
  }
  .split-content {
    padding: 48px 24px;
  }
}

.classes {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
  background: var(--ivory);
  border-top: 1px solid var(--dark-10);
}

.classes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.section-label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5228;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}

.classes-link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a5228;
  border-bottom: 1px solid #7a5228;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity var(--ease);
}
.classes-link:hover {
  opacity: 0.7;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.class-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(53, 34, 8, 0.07);
  border: 2px solid transparent;
  transition: border-color var(--ease);
}
.class-card:hover {
  border-color: var(--copper);
}

.card-img {
  height: 224px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.badge-beginner {
  background: rgba(34, 139, 34, 0.12);
  color: #1a6b1a;
}
.badge-intermediate {
  background: rgba(220, 140, 0, 0.12);
  color: #a06000;
}
.badge-all {
  background: rgba(59, 130, 246, 0.12);
  color: #1d6db5;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.card-desc {
  font-size: 1rem;
  color: rgba(53, 34, 8, 0.65);
  line-height: 1.6;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--dark-10);
}

.card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid var(--dark-10);
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.24s ease;
}
.btn-card:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--ivory);
}

.gallery-preview {
  background: var(--ivory);
  border-top: 1px solid var(--dark-10);
}

.gallery-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 64px 48px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.gallery-header .section-label {
  font-size: 1.1rem;
}
.gallery-header .section-title {
  font-size: 3rem;
}

.gallery-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(53,34,8,.6);
}


.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 800px;
  gap: 8px;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--ease);
}
.gallery-item:hover img {
  opacity: 0.85;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(53, 34, 8, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  opacity: 0.8;
  transition: opacity var(--ease);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.gallery-feature {
  grid-row: 1 / 3;
}

.gallery-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 249, 236, 0.75);
  color: var(--dark);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}


@media (max-width: 860px) {
  .gallery-inner {
    padding: 64px 24px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 280px 280px;
    height: auto;
  }
  .gallery-feature {
    grid-row: auto;
  }
}


.schedule-section {
  box-shadow: 0 4px 24px rgba(53, 34, 8, 0.1);
}

.schedule-heading {
  margin-bottom: 40px;
}

.schedule-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}

.schedule-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--dark);
  table-layout: fixed;
}

.schedule-table thead th {
  background: var(--dark);
  color: var(--fawn);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 16px;
  border: 1px solid rgba(255, 248, 231, 0.12);
  text-align: center;
}

.schedule-table thead th.weekend-header {
  color: rgba(225, 187, 128, 0.45);
}

.schedule-table tbody td {
  background: #fff;
  border: 1px solid rgba(53, 34, 8, 0.1);
  vertical-align: top;
}

.cal-cell {
  padding: 12px 14px;
  height: 150px;
}

.weekend-cell {
  background: rgba(53, 34, 8, 0.03);
}

.out-of-month {
  background: rgba(53, 34, 8, 0.02);
}

.date-number {
  display: block;
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(53, 34, 8, 0.55);
  margin-bottom: 10px;
}

.class-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.class-item {
  text-align: left;
}

.class-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.class-level {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(53, 34, 8, 0.55);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .schedule-inner {
    padding: 48px 24px 72px;
  }
  .schedule-table {
    min-width: 760px;
  }
  .cal-cell {
    height: auto;
    min-height: 100px;
  }
}

.intake-section {
  padding: 80px 48px 96px;
  border-top: 1px solid rgba(53, 34, 8, 0.1);
}

.intake-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.intake-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 40px;
}

.intake-subheading {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5228;
  margin-bottom: 20px;
  margin-top: 40px;
}

.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.intake-card {
  border: 1px solid rgba(53, 34, 8, 0.12);
  border-radius: 10px;
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}

.card-type {
  font-size: 0.8rem;
  color: rgba(53, 34, 8, 0.5);
  margin-top: 6px;
}

.card-meta {
  text-align: right;
}

.card-day {
  font-size: 0.85rem;
  color: rgba(53, 34, 8, 0.6);
}

.card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1.1;
}

.card-per-person {
  font-size: 0.8rem;
  color: rgba(53, 34, 8, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-tags {
  display: flex;
  gap: 8px;
}

.tag {
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(53, 34, 8, 0.2);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(53, 34, 8, 0.65);
  background: transparent;
}

.card-spots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spots-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spots-label {
  font-size: 0.8rem;
  color: rgba(53, 34, 8, 0.5);
}

.spots-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}

.spots-bar {
  height: 4px;
  background: rgba(53, 34, 8, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.spots-fill {
  height: 100%;
  background: var(--copper);
  border-radius: 2px;
}

.intake-card .card-footer {
  display: flex;
  justify-content: flex-end;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid var(--dark);
  background: var(--dark);
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.24s ease;
}

.register-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(179, 130, 74, 0.35);
}

.agenda-view {
  display: none;
}

.agenda-week {
  border-bottom: 1px solid rgba(53, 34, 8, 0.15);
}

.agenda-week-label {
  list-style: none;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.agenda-week-label::-webkit-details-marker {
  display: none;
}

.agenda-week-label::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0;
}

.agenda-week[open] .agenda-week-label::after {
  content: "−";
}

.agenda-week-days {
  padding-bottom: 8px;
}

.agenda-day {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(53, 34, 8, 0.1);
}

.agenda-day-header {
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.agenda-day-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

.agenda-date-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.agenda-classes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.agenda-class-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.agenda-class-meta {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(53, 34, 8, 0.55);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .schedule-wrap {
    display: none;
  }
  .agenda-view {
    display: block;
  }
  .intake-section {
    padding: 56px 24px 72px;
  }
  .intake-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-hero {
  padding: 32px 24px 16px;
  text-align: center;
  background: #fff;
}

.gallery-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin: 0 0 8px;
}

.gallery-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--copper);
}

.gallery-page {
  background: var(--ivory);
  padding-bottom: 72px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px 24px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.24s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--dark);
  color: var(--ivory);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1280px;
  margin: 0 auto;
}

.mosaic-item {
  height: 280px;
  overflow: hidden;
  border-radius: 6px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--ease);
}

.mosaic-item:hover img {
  opacity: 0.85;
}

.mosaic-item.hidden {
  display: none;
}

.gallery-load-more {
  display: flex;
  justify-content: center;
  padding: 48px 24px 0;
}

.load-more-btn {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 100px;
  border: none;
  background: var(--dark);
  color: var(--ivory);
  cursor: pointer;
  transition: background var(--ease);
}

.load-more-btn:hover {
  background: var(--copper);
}

.load-more-btn.done {
  display: none;
}

@media (max-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic-item {
    height: 200px;
  }
}

body.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.error-content {
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.error-number {
  font-family: "Source Sans 3", sans-serif;
  font-size: 8.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.error-message {
  font-size: 1.05rem;
  color: var(--copper);
  line-height: 1.5;
}

.booking-hero {
  background: var(--ivory);
  text-align: center;
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--dark-10);
}

.booking-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
}

.booking-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--copper);
}

.booking-page {
  background: var(--ivory);
  padding: 64px 24px 96px;
}

.booking-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--dark-10);
  display: grid;
  grid-template-columns: 3fr 2fr;
  background: #fff;
}

.booking-form-panel {
  padding: 40px;
  border-right: 1px solid var(--dark-10);
}

.booking-form-panel .form-input {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.booking-form-panel .form-label {
  font-size: 0.78rem;
}

.booking-form-panel .form-group {
  margin-bottom: 16px;
}

.booking-section-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-summary-panel {
  padding: 40px;
}

.summary-heading {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.summary-rows {
  border-top: 1px solid var(--dark-10);
  margin-bottom: 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-10);
  font-size: 0.9rem;
}

.summary-label {
  color: rgba(53, 34, 8, 0.6);
}

.summary-value {
  color: var(--dark);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.summary-total .summary-label {
  font-weight: 700;
  color: var(--dark);
}

.summary-total .summary-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--copper);
}

.checkout-btn {
  width: 100%;
  padding: 14px 24px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid var(--dark);
  background: var(--dark);
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.24s ease;
}

.checkout-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.booking-note {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(53, 34, 8, 0.5);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-form-panel {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--dark-10);
  }
  .booking-summary-panel {
    padding: 32px 24px;
  }
}

.booking-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(53, 34, 8, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-card {
  background: var(--ivory);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  border: 1px solid var(--dark-10);
  text-align: center;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.booking-modal.open .booking-modal-card {
  transform: translateY(0);
}

.modal-eyebrow {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.modal-sub {
  font-size: 1rem;
  color: rgba(53, 34, 8, 0.65);
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-details {
  border-top: 1px solid var(--dark-10);
  margin-bottom: 32px;
  text-align: left;
}

.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-10);
  font-size: 0.9rem;
}

.modal-label {
  color: rgba(53, 34, 8, 0.6);
}

.modal-value {
  font-weight: 600;
  color: var(--dark);
}

.modal-row-total .modal-label {
  font-weight: 700;
  color: var(--dark);
}

.modal-row-total .modal-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--copper);
}

.modal-home-btn {
  display: inline-flex;
}

.contact-hero {
  background: #fff;
  text-align: center;
  padding: 32px 24px 16px;
  border-top: 1px solid var(--dark-10);
}

.contact-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
}

.contact-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--copper);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory);
}

.contact-left {
  padding: 56px 48px;
  border-right: 1px solid var(--dark-10);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-row {
  display: flex;
  gap: 48px;
}

.contact-info-col {
  flex: 1;
}

.contact-info-heading {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-info-text {
  font-size: 1rem;
  color: rgba(53, 34, 8, 0.7);
  line-height: 1.8;
}

.contact-info-text a {
  color: rgba(53, 34, 8, 0.7);
  transition: color var(--ease);
}

.contact-info-text a:hover {
  color: var(--copper);
}

.contact-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--dark-10);
}

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

.contact-directions {
  display: flex;
  justify-content: center;
}

.contact-right {
  padding: 56px 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(53, 34, 8, 0.5);
  background: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: var(--dark);
  border-radius: 4px;
  transition: border-color var(--ease);
}

.form-input:focus {
  border-color: var(--copper);
}

.form-input::placeholder {
  color: rgba(53, 34, 8, 0.5);
}

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

.form-submit {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--dark-10);
  }
  .contact-right {
    padding: 48px 24px;
  }
  .contact-info-row {
    flex-direction: column;
    gap: 32px;
  }
}

.story-section {
  border-top: 1px solid var(--dark-10);
  text-align: center;
  padding: 32px 24px 16px;
  background: #fff;
}

.story-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin: 0 0 8px;
}

.story-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--copper);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-top: 1px solid var(--dark-10);
}

.story-img {
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px;
}

.story-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.story-para {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(53, 34, 8, 0.7);
}

.mission-section {
  background: #fff;
  padding: 96px 48px;
  border-top: 1px solid var(--dark-10);
}

.mission-inner {
  max-width: 960px;
  margin: 0 auto;
}

.mission-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 64px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.mission-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.mission-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(53, 34, 8, 0.7);
}

.team-section {
  background: var(--ivory);
  padding: 96px 48px;
  border-top: 1px solid var(--dark-10);
}

.team-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.team-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 64px;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
}

.team-role {
  font-size: 0.85rem;
  color: rgba(53, 34, 8, 0.5);
  margin-top: 4px;
}

@media (max-width: 860px) {

  .story-split {
    grid-template-columns: 1fr;
  }
  .story-img {
    height: 300px;
  }
  .story-text {
    padding: 40px 24px;
  }
  .mission-section {
    padding: 64px 24px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-section {
    padding: 64px 24px;
  }
  .team-row {
    gap: 40px;
  }
  .team-member {
    width: calc(50% - 20px);
  }
}

.footer {
  background: var(--dark);
  color: var(--ivory);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,248,231,.1);
}

.footer-logo img {
  height: 160px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}


.footer-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 16px;
}

.footer-contact .footer-heading {
  color: var(--ivory);
}

.footer-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.footer-nav a {
  font-size: 1rem;
  color: rgba(255,248,231,.7);
  transition: color var(--ease);
}
.footer-nav a:hover {
  color: var(--ivory);
}

.footer-contact p {
  font-size: 1rem;
  color: rgba(255,248,231,.7);
  line-height: 1.8;
}
.footer-contact a {
  color: rgba(255,248,231,.7);
  transition: color var(--ease);
}
.footer-contact a:hover {
  color: var(--ivory);
}

.footer-bar {
  padding-top: 24px;
  font-size: 1rem;
  color: rgba(255,248,231,.6);
  text-align: center;
}

@media (max-width: 860px) {
  .footer-inner {
    padding: 48px 24px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto 16px;
  }
  .footer-nav ul {
    justify-items: center;
  }
  .footer-contact a,
  .footer-contact p {
    display: block;
  }
  .btn.btn-ghost {
    margin: 16px auto 0;
  }
  .hero-actions .btn.btn-ghost {
    margin: 0;
  }
  .classes {
    padding: 64px 24px;
  }
  .classes-grid {
    grid-template-columns: 1fr;
  }
}
