:root {
  --sand: #f7ead2;
  --shell: #fffaf0;
  --sea: #1b7f8f;
  --sea-dark: #115766;
  --coral: #d9826b;
  --ink: #20343b;
  --muted: #63767d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(19, 68, 78, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8ea 0%, #eef9fb 55%, #fffaf0 100%);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 127, 143, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--sea-dark);
}
.logo {
  width: 48px;
  height: 48px;
}
.site-nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 700;
}
.site-nav a {
  text-decoration: none;
  color: var(--sea-dark);
}
.site-nav a:hover {
  color: var(--coral);
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--sea);
  color: white;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-size: 1.2rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}
.hero {
  padding-top: clamp(2rem, 4vw, 4rem);
}
.hero-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 127, 143, 0.14);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 2.2rem);
}
.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -14px 16px 16px -14px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--sea), #95d5d8);
  z-index: -1;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  border: 8px solid var(--shell);
  box-shadow: 0 18px 35px rgba(32, 52, 59, 0.16);
}
.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0;
  color: var(--sea-dark);
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}
h3 {
  font-size: 1.6rem;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
.primary {
  background: var(--sea);
  color: white;
  box-shadow: 0 10px 24px rgba(27, 127, 143, 0.22);
}
.secondary {
  background: var(--sand);
  color: var(--sea-dark);
}
.button:hover {
  transform: translateY(-1px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.filter-btn {
  border: 1px solid rgba(27, 127, 143, 0.25);
  background: white;
  color: var(--sea-dark);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--sea);
  color: white;
}
/* Uniform product gallery: every card, image, and caption aligns cleanly */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  height: 410px;
}

.gallery-image-wrap {
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.gallery-item figcaption {
  padding: 1rem;
  min-height: 110px;
}
.gallery-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.gallery-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-section {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: start;
}
.about-copy,
.about-card,
.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 127, 143, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.about-copy p {
  color: var(--muted);
  line-height: 1.75;
}
.about-card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.9;
}
.contact-section {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--sea-dark);
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(27, 127, 143, 0.25);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: white;
  color: var(--ink);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  font-weight: 800;
  color: var(--sea-dark);
}
.social-links a:hover {
  color: var(--coral);
}
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(8, 31, 36, 0.84);
}
.lightbox.open {
  display: grid;
}
.lightbox img {
  max-height: 78vh;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: white;
}
.lightbox p {
  color: white;
  font-weight: 700;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: inline-block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 1rem;
    right: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .site-nav.open {
    display: flex;
  }
  .hero-card,
  .about-section {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    aspect-ratio: 1 / 1;
  }
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .masonry-gallery {
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
  }
}
