:root {
  --turquoise: #22aeca;
  --turquoise-deep: #0c8ea4;
  --ocean-green: #0f6f63;
  --ocean-dark: #123f3d;
  --charcoal: #263130;
  --seafoam: #dff5f0;
  --seafoam-soft: #eefbf8;
  --cream: #fff8eb;
  --ivory: #fffdf7;
  --gold: #c9a45c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 63, 61, 0.14);
  --radius: 22px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(135deg, var(--seafoam-soft), var(--cream));
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid rgba(15, 111, 99, 0.12);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a,
.site-footer a {
  position: relative;
  color: var(--ocean-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.site-footer a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 111, 99, 0.18);
  border-radius: 50%;
  background: var(--ivory);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ocean-green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
  padding: 76px max(24px, calc((100vw - var(--max-width)) / 2)) 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 164, 92, 0.18), transparent 28%),
    linear-gradient(135deg, #ecfbf8 0%, #d7f3ed 45%, #fff8eb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(15, 111, 99, 0.12);
  border-radius: 34px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-logo {
  width: min(230px, 58vw);
  margin-bottom: 26px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--ocean-green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--ocean-dark);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 400;
}

h2 {
  color: var(--ocean-dark);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 400;
}

h3 {
  color: var(--ocean-dark);
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 540px;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--turquoise), var(--ocean-green));
  box-shadow: 0 12px 30px rgba(12, 142, 164, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 111, 99, 0.32);
}

.hero-slideshow {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 430px;
  overflow: hidden;
  border: 12px solid rgba(255, 253, 247, 0.78);
  border-radius: 42px 42px 10px 42px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--turquoise), var(--ocean-green));
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}

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

.section {
  padding: 96px 24px;
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

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

.about-text {
  color: var(--charcoal);
  font-size: 1.12rem;
}

blockquote {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ocean-dark);
  background: rgba(223, 245, 240, 0.65);
  font-size: 1.28rem;
  line-height: 1.45;
}

.experiences {
  background:
    linear-gradient(180deg, rgba(223, 245, 240, 0.75), rgba(255, 253, 247, 0.92));
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.experience-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(34, 174, 202, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 14px 34px rgba(18, 63, 61, 0.09);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.experience-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise), var(--gold));
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 111, 99, 0.34);
  box-shadow: var(--shadow);
}

.experience-card p {
  margin-bottom: 0;
}

.gallery {
  background: var(--ivory);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-heading p:last-child {
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 15px 34px rgba(18, 63, 61, 0.13);
  cursor: pointer;
  background: var(--seafoam);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 111, 99, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

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

.contact {
  background:
    radial-gradient(circle at 80% 10%, rgba(34, 174, 202, 0.16), transparent 30%),
    linear-gradient(135deg, var(--seafoam-soft), var(--cream));
}

.contact-panel {
  max-width: 860px;
  text-align: center;
}

.contact-panel p {
  font-size: 1.14rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.contact-links a {
  padding: 13px 20px;
  border: 1px solid rgba(15, 111, 99, 0.22);
  border-radius: 999px;
  color: var(--ocean-dark);
  background: rgba(255, 253, 247, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-links a:hover {
  color: var(--white);
  background: var(--ocean-green);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--ivory);
  background: var(--ocean-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--ivory);
  font-size: 0.76rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 63, 61, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1040px);
  max-height: 86vh;
  border: 10px solid var(--ivory);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 253, 247, 0.4);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(15, 111, 99, 0.14);
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 13px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero-slideshow {
    min-height: 320px;
    aspect-ratio: 16 / 11;
    border-radius: 30px 30px 8px 30px;
  }

  .two-column,
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .navbar {
    width: min(100% - 24px, var(--max-width));
  }

  .brand img {
    width: 118px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero::before {
    inset: 12px;
    border-radius: 24px;
  }

  .section {
    padding: 72px 18px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: 2.15rem;
  }

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

  .experience-card {
    min-height: auto;
  }

  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-links a {
    width: 100%;
  }
}
