@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --bg: #f8f6f2;
  --bg-alt: #f1ece4;
  --surface: #ffffff;
  --text: #152429;
  --text-soft: #5a6d74;
  --brand: #15656d;
  --brand-deep: #0b454b;
  --brand-light: #e6f2f3;
  --gold: #b8954a;
  --gold-light: #f3ead6;
  --gold-glow: rgba(184, 149, 74, 0.35);
  --border: rgba(21, 101, 109, 0.1);
  --border-strong: rgba(21, 101, 109, 0.18);
  --shadow-sm: 0 4px 24px rgba(11, 69, 75, 0.06);
  --shadow-md: 0 16px 48px rgba(11, 69, 75, 0.1);
  --shadow-lg: 0 28px 64px rgba(11, 69, 75, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.container--narrow {
  width: min(900px, 90%);
}

/* ── Top bar ── */
.top-bar {
  background: linear-gradient(90deg, var(--brand-deep), #0d5259);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}

.top-bar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.top-bar a {
  color: #fff;
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar-divider {
  opacity: 0.35;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.social-links img {
  width: 18px;
  height: 18px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(248, 246, 242, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  --header-h: 76px;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand img {
  width: 64px;
  height: auto;
  transition: width var(--transition);
}

.site-header.is-scrolled .brand img {
  width: 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand h1 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--brand-deep);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--brand-deep);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.menu-btn:hover {
  background: var(--brand-light);
}

.mobile-nav-head {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(11, 69, 75, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-deep);
  background: rgba(21, 101, 109, 0.06);
}

.main-nav a.active::after {
  width: 1.25rem;
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.15rem !important;
  background: var(--brand-deep) !important;
  color: #fff !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.8s cubic-bezier(0.45, 0.05, 0.25, 1);
  pointer-events: none;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide.is-prev {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 7s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.hero-slide.is-active img,
.hero-slide.is-prev img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(11, 69, 75, 0.88) 0%, rgba(11, 69, 75, 0.45) 48%, rgba(11, 69, 75, 0.2) 100%),
    linear-gradient(180deg, transparent 55%, rgba(11, 69, 75, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 6rem 0 7.5rem;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.hero-content h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 600;
}

.hero-content p {
  margin: 0 0 2rem;
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
  background-color: #4444444d;
    padding: 2%;
}

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

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.hero-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-prev {
  left: 1.5rem;
}

.hero-next {
  right: 1.5rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 4.75rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(11, 69, 75, 0.35);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: width var(--transition), background var(--transition), border-radius var(--transition);
}

.hero-dot.is-active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--gold);
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(11, 69, 75, 0.92);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  border-top: 1px solid rgba(184, 149, 74, 0.45);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  padding: 0.85rem 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-marquee-track span {
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #c9a24d, var(--gold));
  color: #1f1a10;
  box-shadow: 0 10px 28px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184, 149, 74, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-deep);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.section-cta {
  margin-top: 2.5rem;
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
}

.section-dark {
  background: var(--brand-deep);
  color: #fff;
}

.section-header {
  max-width: 640px;
  margin-bottom: 5rem;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--brand-deep);
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-split {
  align-items: start;
}

.section-about {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-top {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.75rem;
}

.about-intro .section-header {
  margin-bottom: 1rem;
}

.about-intro p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.about-media {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
}

.about-media img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 200px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.about-media .media-accent {
  width: 42%;
  max-width: 150px;
  padding: 0.9rem;
  bottom: -0.85rem;
  right: -0.85rem;
}

.about-media .media-accent strong {
  font-size: 1.35rem;
}

.about-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-row .about-block {
  height: 100%;
}

.about-block--left {
  text-align: left;
}

.about-block--right {
  text-align: left;
}

.about-content .section-header {
  margin-bottom: 1.75rem;
}

.about-block {
  margin-top: 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.about-rows .about-block {
  border-top: 1px solid var(--border);
}

.about-block h4 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--brand-deep);
  line-height: 1.2;
}

.about-block p {
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.about-block p:last-of-type {
  margin-bottom: 0;
}

.about-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.about-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-light);
}

.about-block--compact {
  background: linear-gradient(135deg, var(--surface) 0%, var(--brand-light) 100%);
}

.about-block--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-deep), #0d5259);
  color: #fff;
}

.about-block--cta h4 {
  color: #fff;
}

.about-block--cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.about-block--cta .btn {
  margin-top: 0;
  align-self: flex-start;
  white-space: nowrap;
}

.split--reverse .split-media {
  order: -1;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 1;
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.03);
}

.media-accent {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 45%;
  max-width: 180px;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.media-accent strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: var(--brand-deep);
  line-height: 1.1;
}

.media-accent span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--brand-deep);
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* legacy card img support */
.card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card > h4,
.card > p {
  padding-inline: 1.4rem;
}

.card > h4 {
  margin-top: 1.25rem;
}

.card > p:last-child {
  padding-bottom: 1.5rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 69, 75, 0.45));
  opacity: 0;
  transition: opacity var(--transition);
}

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

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

.gallery-grid > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.7s var(--ease), box-shadow var(--transition);
}

.gallery-grid > img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.info-card--combined {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.info-card-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  align-items: flex-start;
}

.info-card-item + .info-card-item {
  border-top: 1px solid var(--border);
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand-deep);
  font-size: 1.1rem;
}

.info-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-card a {
  color: var(--brand-deep);
  font-weight: 500;
  transition: color var(--transition);
}

.info-card a:hover {
  color: var(--brand);
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.form-field {
  display: block;
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font: inherit;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(21, 101, 109, 0.1);
}

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

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand-deep);
  font-weight: 600;
}

.form-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: #fdecec;
  color: #9b2c2c;
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(165deg, #0a3d43 0%, var(--brand-deep) 45%, #082f34 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 96px;
  filter: brightness(1.05);
}

.footer-grid p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-grid strong {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
  /* radial-gradient(ellipse at top right, rgba(184, 149, 74, 0.12), transparent 50%), */
  radial-gradient(ellipse at top right,rgba(184, 149, 74, 0.493), transparent 50%), 
  linear-gradient(180deg, var(--brand-light), var(--bg));
}

.page-hero .section-header {
  margin-bottom: 2rem;
}

.page-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.stack > .card {
  padding: 2rem;
}

.stack > .card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  color: var(--brand-deep);
}

/* ── Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 900px) {
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-top {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .about-media img {
    flex: none;
    height: auto;
    min-height: 0;
    max-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .about-row {
    grid-template-columns: 1fr;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .media-accent {
    right: 1rem;
    bottom: -1rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.78rem;
  }

  .top-bar-inner {
    justify-content: center;
    padding: 0.5rem 0;
  }

  .top-bar-contact {
    justify-content: center;
  }

  .nav-wrap .main-nav {
    display: none;
  }

  body > .main-nav {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
    margin-left: auto;
    z-index: 1100;
    position: relative;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 94vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0 0 2rem;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(11, 69, 75, 0.18);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1095;
    transform: translate3d(100%, 0, 0);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease), visibility 0.4s;
    backdrop-filter: none;
  }

  .main-nav.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: block;
    width: 100%;
    padding: calc(1.35rem + env(safe-area-inset-top, 0px)) 1.25rem 1.15rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--brand-deep), #0d5259);
    color: #fff;
    box-shadow: 0 4px 16px rgba(11, 69, 75, 0.2);
  }

  .mobile-nav-head-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
  }

  .mobile-nav-head .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0;
  }

  .mobile-nav-head .top-bar-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .mobile-nav-head .mobile-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
  }

  .mobile-nav-head .mobile-contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
  }

  .mobile-nav-head .top-bar-contact a {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    word-break: break-word;
  }

  .mobile-nav-head .top-bar-contact a:hover {
    color: var(--gold-light);
  }

  .mobile-nav-head .top-bar-divider {
    display: none;
  }

  .mobile-nav-head .social-links {
    width: 100%;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-nav-head .social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
  }

  .mobile-nav-head .social-links img {
    width: 20px;
    height: 20px;
  }

  .main-nav > a {
    margin-inline: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-deep);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    text-align: left;
    width: auto;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav > a:hover,
  .main-nav > a.active {
    background: var(--brand-light);
    color: var(--brand-deep);
  }

  .nav-cta {
    margin: 0.75rem 1rem 0 !important;
    text-align: center !important;
    background: var(--brand-deep) !important;
    color: #fff !important;
    padding: 1rem 1.25rem !important;
  }

  .nav-cta:hover {
    background: var(--brand) !important;
    color: #fff !important;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 52px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .hero-prev {
    left: 0.75rem;
  }

  .hero-next {
    right: 0.75rem;
  }

  .hero-content {
    padding: 5rem 0 6.5rem;
  }

  .hero-dots {
    bottom: 4rem;
  }

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

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


/* If viewport width is 600px or more, set font-size to 80px */
@media screen and (min-width: 600px) {
  [data-animate].show {
    right: 23%;
    top: -20%;
  }
}