:root {
  --ink: #1c1f24;
  --ink-soft: #52585f;
  --paper: #ffffff;
  --paper-soft: #f5f4f1;
  --line: #e6e4df;
  --accent: #b8863f;
  --accent-dark: #96692a;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(28, 31, 36, 0.08);
  --container: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  margin: 0 0 .5em;
  line-height: 1.2;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(184,134,63,.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 10px 22px; font-size: .9rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,26,.55) 0%, rgba(20,22,26,.65) 55%, rgba(20,22,26,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: #e8cfa0;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: .4em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.hero .btn-ghost:hover { border-color: #fff; }

/* Section shared */
section { padding: 100px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.section-sub {
  max-width: 560px;
  font-size: 1.05rem;
  margin-bottom: 3em;
}

/* Portfolio */
.portfolio { background: var(--paper-soft); }
.portfolio-group { margin-bottom: 56px; }
.portfolio-group:last-child { margin-bottom: 0; }
.portfolio-group-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Services / Pricing */
.pricing-card {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 56px;
}
.pricing-card h3 { color: #fff; font-size: 1.5rem; }
.pricing-note { color: rgba(255,255,255,.7); max-width: 520px; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.tier {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-size { color: rgba(255,255,255,.7); font-size: .9rem; }
.tier-price { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 600; color: var(--accent); }

.addons-heading { font-size: 1.3rem; margin-bottom: 20px; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.addon-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.addon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.addon-top h4 { margin: 0; font-size: 1.05rem; }
.addon-price { font-weight: 600; color: var(--accent); font-size: .95rem; white-space: nowrap; }
.addon-card p { font-size: .92rem; margin: 0; }
.addon-soon { opacity: .68; }
.addon-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Booking */
.booking { background: var(--paper-soft); }
.calendly-wrap { position: relative; }
.calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.booking-fallback {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 60px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.fallback-icon { font-size: 2.2rem; margin-bottom: 12px; }
.booking-fallback h3 { font-size: 1.4rem; }
.fallback-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { font-size: 1.05rem; }
.about-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-stats li {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
}
.about-stats strong { font-family: 'Poppins', sans-serif; font-size: 1.1rem; }
.about-stats span { color: var(--ink-soft); font-size: .92rem; }

/* Contact */
.contact { background: var(--ink); color: #fff; }
.contact h2 { color: #fff; }
.contact .section-sub { color: rgba(255,255,255,.7); margin-bottom: 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-cards {
  display: grid;
  gap: 14px;
}
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .15s ease, border-color .15s ease;
}
a.contact-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.contact-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.contact-value { font-family: 'Poppins', sans-serif; font-size: 1.15rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner p { margin: 0; font-size: .85rem; color: var(--ink-soft); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,12,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Responsive */
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .tier-grid, .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 18px;
  }
  .site-header.menu-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 230px;
    left: 24px;
  }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .tier-grid, .addons-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 40px; height: 40px; }
}
