:root {
  --black: #f6f1e8;
  --ink: #fffdf8;
  --panel: #efe5d8;
  --panel-soft: #e4d7c5;
  --lilac: #6f826b;
  --lilac-soft: #3f563f;
  --cream: #243026;
  --gold: #b08f5c;
  --muted: #6d7066;
  --line: rgba(111, 130, 107, 0.22);
  --shadow: 0 24px 70px rgba(78, 69, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(111, 130, 107, 0.08), transparent 26%, transparent 72%, rgba(176, 143, 92, 0.1)),
    repeating-linear-gradient(90deg, rgba(111, 130, 107, 0.05) 0 1px, transparent 1px 82px);
  opacity: 0.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 6px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: block;
  width: clamp(62px, 7vw, 88px);
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(63, 86, 63, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(63, 86, 63, 0.2);
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--lilac-soft);
}

.header-cta,
.button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(63, 86, 63, 0.32);
  background: var(--lilac);
  color: #fffdf8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100svh - 56px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.94) 0%, rgba(246, 241, 232, 0.76) 42%, rgba(246, 241, 232, 0.28) 100%),
    linear-gradient(0deg, rgba(246, 241, 232, 0.92) 0%, transparent 44%),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(56px, 10vw, 120px) clamp(18px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lilac);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.86;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 500;
}

h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 500;
}

.hero-content p:not(.eyebrow),
.intro-copy,
.feature-strip p,
.booking-panel p,
.service-card p,
.steps p,
.page-intro,
.story-copy,
.faq-list p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.72);
  color: var(--lilac-soft);
}

.wide-button {
  width: min(100%, 320px);
  align-self: center;
}

.section-pad {
  position: relative;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 6vw, 88px);
}

.split,
.feature-strip,
.about-story,
.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.intro,
.services,
.experience,
.form-section {
  background: var(--ink);
}

.intro-copy p:last-child,
.story-copy p:last-of-type,
.feature-strip p {
  margin-bottom: 28px;
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.service-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card,
.steps div {
  min-height: 320px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--panel);
}

.service-card.accent {
  background: linear-gradient(150deg, rgba(111, 130, 107, 0.2), var(--panel-soft));
}

.service-card span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--gold);
  font-weight: 900;
}

.feature-strip {
  background:
    linear-gradient(90deg, rgba(111, 130, 107, 0.14), transparent 54%),
    #f8f3ea;
}

.feature-strip figure,
.portrait-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-strip img,
.portrait-frame img {
  width: 100%;
  height: clamp(420px, 56vw, 720px);
  object-fit: cover;
}

.steps strong {
  display: block;
  margin-bottom: 22px;
  color: var(--lilac-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.booking {
  background: linear-gradient(180deg, var(--ink), #efe5d8);
}

.booking-panel {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(111, 130, 107, 0.28);
  background: linear-gradient(135deg, rgba(111, 130, 107, 0.14), rgba(255, 253, 248, 0.96));
  box-shadow: var(--shadow);
}

.page-hero {
  min-height: 46svh;
  display: grid;
  align-content: end;
  background:
    linear-gradient(rgba(246, 241, 232, 0.78), rgba(246, 241, 232, 0.94)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 9vw, 8rem);
}

.page-intro {
  max-width: 820px;
}

.about-story {
  background: var(--ink);
  align-items: start;
}

.story-copy {
  padding-top: clamp(8px, 3vw, 36px);
}

.gallery {
  background: #f8f3ea;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 22vw, 340px);
  gap: 14px;
}

.gallery-page-grid {
  grid-auto-rows: clamp(220px, 25vw, 380px);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}

.instagram-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
}

.instagram-cta p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  background: var(--ink);
}

details {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px 24px;
}

summary {
  color: var(--cream);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

details p {
  margin: 18px 0 0;
}

.inquiry-form {
  display: grid;
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(111, 130, 107, 0.28);
  background: linear-gradient(135deg, rgba(111, 130, 107, 0.12), rgba(255, 253, 248, 0.98));
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.span-2 {
  grid-column: span 2;
}

.inquiry-form label,
.inquiry-form legend {
  display: grid;
  gap: 8px;
  color: var(--lilac-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  color: var(--cream);
  font: inherit;
  padding: 13px 15px;
  outline: none;
}

.inquiry-form input[type="file"] {
  padding: 11px;
}

.inquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(111, 130, 107, 0.16);
}

.inquiry-form small,
.inquiry-form fieldset p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.inquiry-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
}

.inquiry-form fieldset p {
  margin: 0 0 4px;
}

.check-row {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  color: var(--cream) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.check-row input {
  width: auto;
  min-height: auto;
}

.inquiry-form button {
  width: min(100%, 360px);
  min-height: 56px;
  justify-self: center;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .footer-brand {
  width: 74px;
}

.site-footer div {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    justify-self: end;
  }

  .split,
  .feature-strip,
  .about-story,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps div {
    min-height: 240px;
  }

  .service-card span {
    margin-bottom: 38px;
  }

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

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

  .span-2 {
    grid-column: span 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    gap: 14px;
  }

  .brand {
    width: 68px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(246, 241, 232, 0.96) 0%, rgba(246, 241, 232, 0.62) 74%),
      url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=900&q=82") center / cover;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 46px;
  }

  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .instagram-cta {
    padding: 18px;
  }
}
