:root {
  --bg: #fbf8f4;
  --surface: #ffffff;
  --soft: #f3ede6;
  --taupe: #e7ddd3;
  --line: #ddd4ca;
  --text: #141414;
  --muted: #5f5952;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--text);
  color: var(--surface);
}

.skip-link:focus {
  top: 12px;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark {
  display: inline-flex;
  width: 188px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
}

.site-nav a.active {
  color: var(--muted);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.home-hero,
.page-hero {
  padding: 54px 0 28px;
}

.hero-grid,
.two-column,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-logo {
  width: min(380px, 100%);
  margin-bottom: 26px;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-actions,
.section-intro {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--text);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.button-dark {
  background: var(--text);
  color: var(--surface);
}

.button-light {
  background: var(--surface);
  color: var(--text);
}

.text-link {
  font-size: 0.95rem;
  color: var(--text);
}

.button:hover,
.text-link:hover {
  opacity: 0.75;
}

.section {
  padding: 70px 0;
}

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

.section-border-top {
  border-top: 1px solid var(--line);
}

.intro-block {
  max-width: 700px;
}

.simple-list-grid,
.gallery-preview-grid,
.gallery-grid,
.addons-grid,
.footer-links,
.footer-meta {
  display: grid;
  gap: 14px;
}

.simple-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simple-list-grid p,
.package-preview-grid article p,
.comparison-row p,
.addons-grid p,
.category-row span {
  margin: 0;
}

.simple-list-grid p,
.comparison-row,
.addons-grid p,
.accordion-list details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.photo-feature {
  display: grid;
  gap: 18px;
}

.feature-note {
  max-width: 580px;
}

.package-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.package-preview-grid article,
.contact-form,
.contact-copy {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.gallery-preview-grid,
.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.accordion-list {
  display: grid;
}

.accordion-list details {
  background: transparent;
}

.accordion-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.final-cta {
  max-width: 640px;
}

.comparison-table {
  border-top: 1px solid var(--line);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.comparison-header {
  padding: 0 0 16px;
  color: var(--text);
}

.comparison-row {
  align-items: start;
}

.editable-token {
  display: inline-block;
  min-width: 3ch;
  padding-bottom: 2px;
  border-bottom: 1px dashed currentColor;
  color: var(--text);
}

.addons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.addons-grid p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.gallery-card {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.real-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.real-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.real-photo-card:hover img,
.real-photo-card:focus-visible img {
  transform: scale(1.02);
}

.about-copy h3 {
  margin-top: 28px;
}

.field-grid,
.two-column-fields {
  display: grid;
  gap: 16px;
}

.two-column-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

textarea {
  resize: vertical;
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  gap: 22px;
}

.footer-brand {
  width: 180px;
}

.footer-links {
  grid-template-columns: repeat(5, max-content);
}

.footer-meta {
  grid-template-columns: repeat(4, max-content);
}

.image-placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  background: #efe7de;
  color: var(--text);
}

.image-hero {
  min-height: 620px;
}

.image-wide {
  min-height: 520px;
}

.image-square {
  min-height: 280px;
}

.image-tall {
  min-height: 560px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
}

.lightbox-dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  margin: 8vh auto 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 72vh;
  margin-bottom: 18px;
  object-fit: contain;
  background: var(--soft);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 81px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--bg);
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .hero-grid,
  .two-column,
  .about-grid,
  .contact-grid,
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .package-preview-grid,
  .simple-list-grid,
  .gallery-preview-grid,
  .gallery-grid,
  .addons-grid,
  .two-column-fields {
    grid-template-columns: 1fr;
  }

  .image-hero {
    min-height: 420px;
  }

  .image-wide,
  .image-tall,
  .image-lightbox {
    min-height: 300px;
  }

  .footer-links,
  .footer-meta {
    grid-template-columns: 1fr;
  }
}
