:root {
  --ink: #171514;
  --muted: #6f6760;
  --paper: #fffaf4;
  --cream: #f5ecdf;
  --rose: #9f4f52;
  --rose-dark: #75363b;
  --olive: #6e7551;
  --gold: #c99b51;
  --line: rgba(23, 21, 20, 0.14);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 21, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 10px 35px rgba(23, 21, 20, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero,
.proposal-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero {
  min-height: 92vh;
}

.page-hero {
  min-height: 52vh;
}

.proposal-hero {
  min-height: 82vh;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-image {
  object-fit: cover;
}

.hero-slider .hero-image {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slider .hero-image.is-active {
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(18, 15, 13, 0.78), rgba(18, 15, 13, 0.38) 48%, rgba(18, 15, 13, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 88px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 88px;
}

.page-hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.proposal-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 88px;
}

.proposal-hero-content h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(4.5rem, 11vw, 9rem);
}

.hero-copy {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button.outline {
  color: var(--rose);
  background: transparent;
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(2.1rem, 5vw, 4.3rem);
}

.section p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-section {
  background: var(--white);
}

.service-grid,
.package-grid,
.gallery-grid,
.link-grid,
.experience-grid,
.proposal-list {
  display: grid;
  gap: 18px;
}

.service-grid,
.link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.package-card,
.empty-gallery,
.link-card,
.proposal-card,
.experience-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card,
.link-card,
.experience-card {
  min-height: 280px;
  padding: 24px;
}

.link-card {
  display: block;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease;
}

.link-card-image {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -24px -24px 18px;
  object-fit: cover;
}

.link-card:hover {
  border-color: rgba(159, 79, 82, 0.45);
  transform: translateY(-3px);
}

.proposal-list {
  grid-template-columns: 1fr;
}

.proposal-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease;
}

.proposal-card:hover {
  border-color: rgba(159, 79, 82, 0.5);
  transform: translateY(-3px);
}

.featured-proposal {
  background: linear-gradient(135deg, #ffffff, #fff4f1);
}

.proposal-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.proposal-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.proposal-image-band {
  width: 100%;
  height: clamp(260px, 40vw, 540px);
  overflow: hidden;
}

.proposal-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.experience-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.experience-image {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -24px -24px 8px;
  object-fit: cover;
}

.experience-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.experience-card p {
  margin: 0;
}

.experience-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.experience-card.dark {
  background: #20251a;
  color: var(--white);
}

.experience-card.dark p,
.experience-card.dark ul {
  color: rgba(255, 255, 255, 0.78);
}

.experience-card.accent {
  background: #fff4f1;
}

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

.proposal-tag {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.experience-card.dark .proposal-tag {
  color: var(--gold);
}

.subtitle {
  color: var(--rose);
  font-weight: 800;
}

.experience-card.dark .subtitle {
  color: var(--gold);
}

.best-for {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 800;
}

.service-number {
  color: var(--rose);
  font-weight: 800;
}

.service-card h3,
.package-card h3,
.empty-gallery h3,
.link-card h3 {
  margin: 18px 0 10px;
  line-height: 1.15;
}

.gallery-section {
  background: #f0f2ea;
}

.section-note {
  max-width: 760px;
}

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

.gallery-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.feature-copy p {
  max-width: 640px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proposal-teaser {
  background: #20251a;
  color: var(--white);
}

.proposal-teaser p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(23, 21, 20, 0.72);
  color: var(--white);
  font-weight: 700;
}

.empty-gallery {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.packages-section {
  background: var(--white);
}

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

.package-card {
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(159, 79, 82, 0.45);
  background: #fff4f1;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.rate-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rate-panel h2 {
  color: var(--rose);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--rose);
  font-weight: 900;
  content: "✓";
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.about-section {
  background: var(--cream);
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact-section {
  background: #20251a;
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details p {
  margin: 0;
}

.proposal-cta {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #171514;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .split,
  .contact-layout,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .gallery-grid,
  .link-grid,
  .service-grid.three,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rate-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .proposal-card {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .page-hero {
    min-height: 44vh;
  }

  .proposal-hero {
    min-height: 78vh;
  }

  .proposal-hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
  }

  .proposal-hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .service-grid,
  .package-grid,
  .gallery-grid,
  .link-grid,
  .service-grid.three,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card.wide {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
