:root {
  --cream: #f8f6f2;
  --panel: #efece5;
  --white: #ffffff;
  --ink: #201d1a;
  --muted: #6f6a62;
  --accent: #c8781f;
  --accent-deep: #a65f15;
  --line: rgba(32, 29, 26, 0.12);
  --shadow: 0 30px 60px rgba(20, 16, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.page-shell {
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
  color: var(--accent-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.92);
  justify-content: flex-start;
}

.squiggle {
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.section-shell {
  padding: 6rem 7vw;
}

.section-heading--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
}

.section-heading--center .squiggle {
  margin-top: 1rem;
}

/* Text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  color: var(--accent-deep);
  gap: 0.8rem;
}

.text-link--light {
  color: var(--white);
  border-color: var(--white);
}

.text-link--light:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 7vw;
}

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

.brand img {
  height: 40px;
  width: auto;
}

.brand__text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.brand__text em {
  font-style: normal;
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 2.2rem;
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: -100px 0;
  will-change: transform;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.55) 0%, rgba(20, 16, 10, 0.4) 45%, rgba(20, 16, 10, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 0 7vw;
  margin: 0 auto;
  text-align: center;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content > * {
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__content .eyebrow {
  justify-content: center;
  animation-delay: 0.15s;
}

.hero__content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  animation-delay: 0.35s;
}

.hero__content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.2rem;
  animation-delay: 0.55s;
}

.hero__content .text-link {
  animation-delay: 0.75s;
}

@keyframes heroArrowReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.75;
  }
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  padding: 0;
  color: var(--white);
  opacity: 0;
  cursor: pointer;
  animation: heroArrowReveal 1s ease 1s forwards;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__arrow .icon {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.hero__arrow:hover {
  opacity: 1;
}

.hero__arrow--prev {
  left: 2.5vw;
}

.hero__arrow--prev:hover {
  transform: translate(-4px, -50%);
}

.hero__arrow--next:hover {
  transform: translate(4px, -50%);
}

.hero__arrow--prev .icon {
  transform: scaleX(-1);
}

.hero__arrow--next {
  right: 4vw;
}

/* Intro / About */
.intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.intro__text p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 0 0 1.2rem;
}

.intro__text h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.3rem;
}

.intro__text .text-link {
  margin-top: 0.6rem;
}

.intro__media {
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro__media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  margin: -3.6rem 4vw 0;
  position: relative;
  z-index: 2;
  padding: 2.6rem 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0 1rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat__icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  stroke-width: 1.2;
  margin-bottom: 0.3rem;
}

.stat h3 {
  font-size: 2rem;
  color: var(--accent-deep);
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Gallery */
.gallery {
  background: var(--panel);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.2rem;
}

.gallery-card__media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}

.gallery-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.05);
}

.gallery-card__tag {
  position: absolute;
  top: 0;
  left: 26px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 0.9rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.gallery-card h3 {
  margin-top: 1.4rem;
  font-size: 1.5rem;
}

.gallery-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-info li .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 0.15rem;
}

.contact-info label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info strong {
  font-weight: 500;
  font-size: 1rem;
}

.contact-map {
  background: linear-gradient(150deg, #24211d, #1a1815);
  min-height: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 1.6rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-map__header .icon {
  color: var(--accent);
}

.contact-map__body {
  position: relative;
  height: calc(100% - 56px);
  min-height: 300px;
  margin-top: 1rem;
  filter: grayscale(0.15) contrast(1.05);
}

.map-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-frame__hint {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 10, 0.35);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.map-frame.is-locked iframe {
  pointer-events: none;
}

.map-frame.is-locked .map-frame__hint {
  display: flex;
}

.social-row {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.social-row__label {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.social-row__links {
  display: flex;
  gap: 0.9rem;
}

.social-row__links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-row__links .icon {
  width: 18px;
  height: 18px;
}

.social-row__links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 5rem 7vw 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.brand--footer .brand__text {
  color: var(--white);
}

.brand--footer img {
  filter: brightness(0) invert(1);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
}

.footer-social .icon {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.site-footer__bottom {
  padding: 1.6rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Messenger fallback bubble. */
.messenger-float {
  position: fixed;
  right: 26px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2b8ef5, #0d6ee8);
  color: white;
  box-shadow: 0 18px 28px rgba(42, 133, 241, 0.42);
  z-index: 20;
}

.messenger-float .icon {
  width: 26px;
  height: 26px;
}

/* Responsive */
@media (max-width: 1080px) {
  .intro__grid {
    grid-template-columns: 1fr;
  }

  .intro__media img {
    min-height: 320px;
  }

  .stat-bar {
    margin: 2.5rem 0 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.5rem;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(20, 16, 10, 0.1);
    padding: 0.5rem 6vw 1rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .section-shell {
    padding: 4rem 6vw;
  }

  .hero {
    min-height: 76vh;
  }

  .hero__arrow {
    width: 40px;
    height: 40px;
  }

  .hero__arrow--prev {
    left: 3vw;
  }

  .hero__arrow--next {
    right: 3vw;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .social-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
