/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --sage: #9aab96;
  --sage-dark: #7b8e78;
  --blush: #edb8b8;
  --charcoal: #2e2e2e;
  --muted: #4d4d4d;
  --subtle: #7a7a7a;
  --soft: #f9f7f4;
  --white: #ffffff;
  --border: rgba(46, 46, 46, 0.09);
  --shadow-sm: 0 4px 16px rgba(46, 46, 46, 0.07);
  --shadow-md: 0 12px 32px rgba(46, 46, 46, 0.1);
  --shadow-lg: 0 20px 48px rgba(46, 46, 46, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button, a {
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  line-height: 1.1;
  font-weight: 500;
}

h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
h2 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.45rem); }
h4 { font-size: 1rem; font-family: "Inter", Arial, sans-serif; font-weight: 600; }

p { margin: 0; }
ul { padding-left: 1.1rem; margin: 0; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section { padding: 4.5rem 0; }

.section--soft { background: var(--soft); }

/* ============================================================
   Accessibility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================================
   Typography Utilities
   ============================================================ */
.eyebrow {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.section-heading { margin-bottom: 2.5rem; }
.section-heading h2 { margin-top: 0.2rem; }

.section-intro {
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
  margin-top: 0.65rem;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--charcoal); }

.nav-links--open {
  display: flex;
  position: absolute;
  inset: 68px 0 auto 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  gap: 1rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--charcoal);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--sage);
  color: var(--white);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* ============================================================
   Buttons
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button--primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(154, 171, 150, 0.28);
}

.button--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(154, 171, 150, 0.38);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.full-width { width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide--active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.28) 55%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 3rem;
  color: var(--white);
  max-width: 700px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.5rem;
}

.hero-inner h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================================
   Portfolio
   ============================================================ */
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 360ms ease;
}

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

.portfolio-meta { padding: 1.1rem 1.25rem; }

.portfolio-meta h3 { margin-bottom: 0.2rem; }

.portfolio-meta p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.card-link {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.card-link:hover {
  background: var(--white);
  transform: translateX(2px);
}

/* ============================================================
   Gallery Modal
   ============================================================ */
.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.gallery-modal.is-open { display: block; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 1.5rem));
  max-height: 92vh;
  margin: 2vh auto;
  overflow-y: auto;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 1.5rem;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.modal-close:hover { background: #444; }

.modal-header {
  padding-right: 3rem;
  margin-bottom: 1.5rem;
}

.modal-header h3 { margin-top: 0.2rem; }

.modal-header p {
  color: var(--muted);
  margin-top: 0.4rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.modal-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

body.modal-open { overflow: hidden; }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-copy h3 {
  font-size: clamp(1.6rem, 5vw, 2rem);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-copy p + p { margin-top: 0.75rem; }

/* ============================================================
   Packages
   ============================================================ */
.package-group { margin-bottom: 3rem; }
.package-group:last-child { margin-bottom: 0; }

.package-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.package-grid {
  display: grid;
  gap: 1rem;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  border-color: rgba(154, 171, 150, 0.5);
  background: linear-gradient(160deg, var(--white), #f5f8f4);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--blush);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.package-tier {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--subtle);
  margin-bottom: 0.2rem;
}

.package-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.package-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.package-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.85rem;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--blush));
}

.testimonial-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  display: grid;
  gap: 1.75rem;
}

.contact-header h2 { margin-top: 0.2rem; }

.contact-links { display: grid; gap: 0.65rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--soft);
}

.contact-link:hover {
  border-color: var(--sage);
  background: #f2f5f1;
}

.contact-link-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage-dark);
  min-width: 72px;
  flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-top: 0.15rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
}

.social-link:hover {
  color: var(--charcoal);
  border-color: var(--sage);
  transform: translateY(-2px);
}

.back-to-top {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(237, 184, 184, 0.55);
  background: var(--white);
  color: var(--blush);
  cursor: pointer;
  font-size: 0.95rem;
}

.back-to-top:hover {
  background: #fff5f5;
  border-color: var(--blush);
  color: #c89898;
  transform: translateY(-2px);
}

/* ============================================================
   Responsive — Tablet 700px+
   ============================================================ */
@media (min-width: 700px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  .hero-inner { padding: 0 2.5rem 4rem; }

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

  .about-grid { grid-template-columns: 1fr 1fr; }

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

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

  .contact-card {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }

  .contact-card > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ============================================================
   Responsive — Desktop 980px+
   ============================================================ */
@media (min-width: 980px) {
  .section { padding: 6rem 0; }

  .hero-inner { padding: 0 4rem 5rem; }

  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }

  .portfolio-card--wide { grid-column: span 2; }

  .portfolio-card img { height: 300px; }

  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }

  .about-photo img { height: 500px; }

  .package-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-card {
    grid-template-columns: 1.1fr 1fr auto;
    align-items: center;
    padding: 2.75rem;
  }

  .contact-card > .button {
    grid-column: auto;
    justify-self: auto;
  }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
