/* Tulip Studio Products Ltd — site stylesheet */

:root {
  --cream: #faf5ef;
  --paper: #ffffff;
  --ink: #2b241f;
  --ink-soft: #6f655c;
  --accent: #9c3148;
  --accent-dark: #7a2338;
  --gold: #b9902f;
  --accent-tint: #f5e3e6;
  --line: #e8ddd0;
  --shadow: 0 24px 48px -28px rgba(43, 36, 31, 0.35);
  --shadow-soft: 0 14px 30px -18px rgba(43, 36, 31, 0.28);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.contact-band .btn-whatsapp {
  box-shadow: none;
}

.btn-icon {
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 76px 0 88px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  margin: 14px 0 20px;
}

.hero .lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.hero-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: end;
}

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

.hero-collage .tall {
  aspect-ratio: 3 / 4;
}

.hero-collage .stack {
  display: grid;
  gap: 18px;
}

.hero-collage .short {
  aspect-ratio: 1 / 1;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(156, 49, 72, 0.14), transparent 70%);
  z-index: -1;
}

/* ---------- Sections ---------- */

section {
  padding: 64px 0;
}

main > section:not(:first-child) {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
}

.section-tight {
  padding-top: 32px;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
}

/* Offerings */

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

.offering-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offering-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.offering-card:hover img {
  transform: scale(1.05);
}

.offering-card .body {
  padding: 22px 24px 26px;
}

.offering-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.offering-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* About / intro band */

.about-band .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-band img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-band .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-band figure {
  margin: 0;
}

.about-band figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* Event band — "come visit us" section */

.event-band {
  background: var(--accent-tint);
}

.event-band .section-head {
  margin-bottom: 26px;
}

.event-band .section-head p {
  font-size: 16px;
}

.about-band .stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: var(--accent);
}

.about-band .stat span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Contact band */

.contact-band {
  background: var(--ink);
  color: #f3e9e0;
}

.contact-band h2 {
  color: #fff;
}

.contact-band .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.contact-band p {
  color: rgba(243, 233, 224, 0.78);
}

.contact-band .hero-actions .btn-ghost {
  border-color: rgba(243, 233, 224, 0.35);
  color: #f3e9e0;
}

.contact-band .hero-actions .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.info-card dl {
  margin: 0;
  display: grid;
  gap: 20px;
}

.info-card dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-card dd {
  margin: 0;
  font-size: 15.5px;
}

.info-card a {
  text-decoration: none;
}

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

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--cream);
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.footer-brand img {
  height: 22px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
}

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

/* ---------- Page header (About / Gallery) ---------- */

.page-hero {
  padding: 58px 0 36px;
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 56ch;
  font-size: 17px;
}

/* ---------- Gallery ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

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

.gallery-item {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 4 / 5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

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

.gallery-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(20, 15, 12, 0.72));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}

.gallery-item:hover .cap {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item[hidden] {
  display: none;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 100;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(900px, 100%);
  max-height: 84vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-cap {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: #f3e9e0;
  font-size: 14px;
}

/* ---------- About page extras ---------- */

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

.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}

.value-card .num {
  font-family: "Fraunces", serif;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 18px;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Contact page ---------- */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff;
}

.contact-card .icon-circle svg {
  width: 24px;
  height: 24px;
}

.contact-card.email .icon-circle {
  background: var(--accent);
}

.contact-card.whatsapp .icon-circle {
  background: #25d366;
}

.contact-card.phone .icon-circle {
  background: var(--ink);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.contact-card .detail {
  font-weight: 600;
  font-size: 15px;
}

.contact-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

.contact-page-info {
  margin-top: 56px;
  background: var(--paper);
  border-color: var(--line);
}

.contact-page-info dt {
  color: var(--accent);
}

.contact-page-info dd {
  color: var(--ink);
}

.contact-page-info a:hover {
  color: var(--accent);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero .wrap,
  .about-band .wrap,
  .contact-band .wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 56px;
    text-align: center;
  }

  .hero .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-collage {
    order: -1;
  }

  .offerings,
  .values,
  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-band img {
    order: -1;
  }
}

@media (max-width: 700px) {
  .main-nav,
  .header-actions .btn-ghost,
  .header-actions .btn-whatsapp {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
  }

  .site-header .wrap {
    height: 72px;
  }

  section {
    padding: 52px 0;
  }

  .offerings,
  .values,
  .contact-methods {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .nav-toggle,
  .lightbox {
    display: none !important;
  }
}
