@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Quicksand:wght@400;500;600;700&family=Caveat:wght@500;600&display=swap');

:root {
  --gold: #FFD34D;
  --amber: #F1B94B;
  --pale-yellow: #FFF3D6;
  --cream: #F7EFE1;
  --sage: #AFC7BF;
  --sage-dark: #8FAAA1;
  --charcoal: #33363A;
  --white: #ffffff;
  --max-width: 1120px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Quicksand", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: "Poppins", "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--charcoal);
}

.script {
  font-family: "Caveat", cursive;
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--pale-yellow);
  z-index: 10;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.logo svg { width: 40px; height: 40px; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-text .logo-main {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.logo-text .logo-main span { color: var(--sage-dark); }

.logo-text .logo-sub {
  font-family: "Caveat", cursive;
  font-size: 0.95rem;
  color: var(--amber);
  font-weight: 600;
}

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

.main-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--amber); }

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover { background: var(--amber); }

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51,54,58,0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-open .mobile-nav-backdrop { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 82vw);
  background: var(--cream);
  box-shadow: -18px 0 40px rgba(51,54,58,0.18);
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-nav-overlay.is-open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(51,54,58,0.1);
  margin-bottom: 24px;
}

.mobile-nav-panel nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-panel nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(51,54,58,0.08);
}

.mobile-nav-panel nav a.current { color: var(--amber); }

.mobile-nav-panel nav a.nav-cta {
  margin-top: 20px;
  text-align: center;
  border-bottom: none;
  background: var(--gold);
  border-radius: 999px;
  padding: 14px 22px;
}

.mobile-nav-panel nav a.nav-cta:hover { background: var(--amber); }

body.nav-open { overflow: hidden; }

/* Full logo lockup (stacked, used on home hero) */
.full-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin: 0 auto 32px;
}

.full-logo-icon { width: 84px; height: 84px; margin-bottom: 10px; }

.full-logo-word {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1;
}

.full-logo-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--sage-dark);
  margin-top: 8px;
}

.full-logo-script-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.full-logo-script-row .dash {
  width: 30px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.full-logo-script {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.full-logo-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  margin-top: 10px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 100px 0 90px;
  background: linear-gradient(180deg, var(--pale-yellow) 0%, var(--cream) 100%);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.hero-inner { max-width: 720px; position: relative; z-index: 1; }

.hero-inner.hero-centered {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  line-height: 1.15;
  color: var(--charcoal);
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.15rem;
  color: #5c5c52;
  max-width: 560px;
}

.hero-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
}

.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--amber); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--pale-yellow); }
.section-sage { background: var(--sage); color: var(--charcoal); }

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-lead {
  margin-top: 12px;
  color: #5c5c52;
  font-size: 1.05rem;
  max-width: 620px;
}

.section-sage .section-lead { color: #24312b; }

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

.card {
  background: var(--white);
  border: 1px solid rgba(51,54,58,0.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 2px 10px rgba(51,54,58,0.05);
}

.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card p { color: #5c5c52; font-size: 0.95rem; margin: 0; }

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.about-inner p { max-width: 700px; font-size: 1.05rem; color: #4a4a42; margin-top: 20px; }

.area-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.area-list span {
  background: var(--white);
  border: 1px solid rgba(51,54,58,0.1);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Feature strip (sage, 3-col) */
.feature-strip {
  background: var(--sage);
  padding: 40px 0;
}

.feature-strip .grid-3 { margin-top: 0; }

.feature-strip h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.feature-strip p { color: #24312b; font-size: 0.9rem; margin: 0; }

/* Contact */
.contact-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.form-row { display: flex; gap: 18px; }
.form-row label { flex: 1; }

label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.9rem;
  gap: 6px;
  color: var(--charcoal);
}

input, textarea {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(51,54,58,0.15);
  border-radius: 10px;
  font-weight: 500;
  background: var(--white);
}

.contact-form button { align-self: flex-start; border: none; cursor: pointer; }

/* Page hero (subpages) */
.page-hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--pale-yellow) 0%, var(--cream) 100%);
  color: var(--charcoal);
}

.page-hero h1 { color: var(--charcoal); font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.page-hero p { margin-top: 14px; color: #5c5c52; max-width: 620px; font-size: 1.05rem; }

/* How it works / steps */
.step-card { position: relative; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

/* FAQ */
.faq-group { margin-top: 48px; }
.faq-group h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

details.faq-item {
  border: 1px solid rgba(51,54,58,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: var(--white);
}

details.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item .faq-answer {
  margin-top: 14px;
  color: #4a4a42;
  font-size: 0.95rem;
}

details.faq-item .faq-answer ul { margin: 8px 0 0; padding-left: 20px; }
details.faq-item .faq-answer li { margin-bottom: 4px; }

/* Gallery placeholder */
.gallery-placeholder {
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--sage);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  background: var(--pale-yellow);
  font-family: "Poppins", sans-serif;
}

.coming-soon-banner {
  border: 1px solid rgba(51,54,58,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: var(--white);
  margin-top: 40px;
}

.coming-soon-banner p { color: #5c5c52; margin-top: 8px; }

/* Small print */
.small-print { font-size: 0.85rem; color: #5c5c52; margin-top: 24px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 40px 0;
}

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

.footer-tagline {
  font-family: "Caveat", cursive;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(247,239,225,0.7);
  text-align: right;
}

/* ---------- Premium photo components ---------- */

/* Full-bleed photo hero (home) */
.hero-photo {
  position: relative;
  padding: 0;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(51,54,58,0.55) 0%, rgba(51,54,58,0.72) 55%, rgba(51,54,58,0.85) 100%);
}

.hero-photo .wrap {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-photo .full-logo-word,
.hero-photo .full-logo-tagline,
.hero-photo h1 { color: var(--white); }

.hero-photo .full-logo-sub { color: var(--pale-yellow); }
.hero-photo .full-logo-script { color: var(--gold); }
.hero-photo .full-logo-icon path,
.hero-photo .full-logo-icon circle:not([fill="#F1B94B"]):not([fill="#33363A"]) { }

.hero-photo .hero-sub { color: rgba(255,255,255,0.88); }

.hero-photo .script { color: var(--gold) !important; }

/* Image frame — shared premium treatment for photography */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(51,54,58,0.18);
  display: block;
  line-height: 0;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Alternating image/text showcase rows */
.showcase-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}

.showcase-row:first-of-type { margin-top: 40px; }

.showcase-row.reverse { grid-template-columns: 1fr 1.1fr; }
.showcase-row.reverse .showcase-media { order: 2; }
.showcase-row.reverse .showcase-copy { order: 1; }

.showcase-media .img-frame { aspect-ratio: 4 / 3; }

.showcase-copy .eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
  display: block;
}

.showcase-copy h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.showcase-copy p { margin-top: 14px; color: #5c5c52; font-size: 1rem; max-width: 480px; }

/* Photo strip (3-up) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.photo-strip .img-frame { aspect-ratio: 3 / 4; }

/* Page hero with background photo (subpages) */
.page-hero-photo {
  position: relative;
  padding: 88px 0 72px;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(51,54,58,0.82) 0%, rgba(51,54,58,0.55) 100%);
}

.page-hero-photo .wrap { position: relative; z-index: 1; }
.page-hero-photo h1 { color: var(--white); }
.page-hero-photo p { color: rgba(255,255,255,0.88); }

/* Card hover polish */
.card, .package-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(51,54,58,0.1);
}

/* About page media layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid .img-frame { aspect-ratio: 4 / 5; }

.about-copy p { max-width: 560px; }

.about-badge {
  position: relative;
  margin-top: -60px;
  margin-left: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(51,54,58,0.15);
  padding: 18px 24px;
  max-width: 260px;
  z-index: 2;
}

.about-badge .script { font-size: 1.2rem; color: var(--amber); display: block; }
.about-badge span.small { font-size: 0.82rem; color: #5c5c52; }

/* Gallery grid (real photography) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(51,54,58,0.14);
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
}

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

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

.gallery-item .gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(51,54,58,0) 0%, rgba(51,54,58,0.75) 100%);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: 4 / 6.3; }

/* Responsive */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .showcase-row.reverse .showcase-media { order: 1; }
  .showcase-row.reverse .showcase-copy { order: 2; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-badge { margin-left: 0; margin-top: -40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .hero { padding: 80px 0 60px; }
  .hero-photo { min-height: 520px; }
  .hero-photo .wrap { padding-top: 90px; padding-bottom: 60px; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-meta { align-items: flex-start; text-align: left; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4 / 3; }
}
