:root {
  --cream: #e8cf9f;
  --cream-soft: #f4efe7;
  --white: #fffdf9;
  --text: #22201d;
  --muted: #514b43;
  --gold: #c9a84f;
  --gold-dark: #b69234;
  --dark: #2f2e2e;
  --line: #e4ddd2;
  --container: min(1120px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #e6c996 0%, #ead5ad 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  max-width: 1020px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #efe3d5;
  box-shadow: 0 8px 30px rgba(92, 69, 27, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.brand img {
  width: auto;
  max-height: 82px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  margin-left: auto;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}

.nav a {
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  background: linear-gradient(90deg, #e8cca0 0%, #ebd6b2 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  min-height: 500px;
  gap: 30px;
}

.hero-copy {
  padding: 54px 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

h1 {
  max-width: 8ch;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9bf79, #c3a34b);
  color: #fffaf0;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(163, 128, 45, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero .button:hover,
.hero .button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 30px rgba(163, 128, 45, 0.26);
  filter: saturate(1.06);
}

.hero-portrait {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

.hero-portrait img {
  width: 100%;
  max-width: 370px;
  height: 430px;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: 56px 0;
  scroll-margin-top: 110px;
}

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

.section-dark {
  background: var(--dark);
  color: #f7f0e4;
}

.section-contact {
  background: linear-gradient(180deg, #e6c996 0%, #ecd7b1 100%);
}

.about-content p {
  margin: 0 0 18px;
  max-width: 82ch;
  line-height: 1.8;
  color: var(--muted);
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf3;
}

.service-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(201, 168, 79, 0.18);
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.service-chip span:last-child {
  line-height: 1.45;
  font-weight: 600;
}

.social-block {
  text-align: center;
}

.social-block h2 {
  max-width: 18ch;
  margin: 0 auto 18px;
  color: #f7f0e4;
  line-height: 1.2;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7bc74;
  transition: transform 160ms ease, background 160ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.social-icons svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.align-center {
  text-align: center;
}

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

.pricing-column {
  display: grid;
  gap: 0;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.price-row strong {
  color: var(--gold-dark);
}

.gallery-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 8px;
  transition: transform 280ms ease;
}

.gallery-empty {
  width: 100%;
  margin: 0;
  padding: 28px 18px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  text-align: center;
  color: var(--muted);
}

.gallery-slide {
  flex: 0 0 calc((100% - 16px) / 3);
  display: block;
}

.gallery-arrow {
  border: 0;
  background: transparent;
  color: #888;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  cursor: zoom-in;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfc6b7;
  cursor: pointer;
}

.gallery-dots .active {
  background: var(--gold);
}

.gallery-shell.is-empty .gallery-arrow,
.gallery-shell.is-empty + .gallery-dots {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 20px;
  padding-top: 14px;
}

.contact-item p {
  margin: 8px 0 0;
  max-width: 38ch;
  color: #2e2922;
  line-height: 1.7;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  text-decoration: underline;
}

.map-card {
  display: flex;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  box-shadow: 0 14px 34px rgba(98, 70, 21, 0.14);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 20, 16, 0.88);
  padding: 24px;
}

.lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  font-size: 3rem;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .header-inner {
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    justify-self: end;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .menu-button span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-button span:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-left: 0;
    background: #efe3d5;
    box-shadow: 0 10px 24px rgba(92, 69, 27, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .menu-toggle:checked ~ .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-inner,
  .pricing-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 36px 0 0;
    text-align: left;
  }

  .hero-portrait {
    justify-content: center;
  }

  .hero-portrait img {
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center bottom;
  }

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

  .gallery-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .gallery-slide {
    flex: 0 0 100%;
  }

  .gallery-slide img {
    height: 320px;
  }

  .pricing-grid {
    gap: 0;
  }

  .map-card iframe {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 86px;
  }

  .brand img {
    width: auto;
    max-height: 68px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    max-width: 100%;
  }

  .hero-inner {
    gap: 20px;
    min-height: auto;
    padding-top: 18px;
  }

  .hero-copy {
    padding-top: 22px;
    padding-bottom: 0;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .section {
    padding: 44px 0;
  }

  .reveal {
    transform: translateY(20px);
  }

  .service-chip {
    padding: 12px;
  }
}
