:root {
  --bg: #f4ede2;
  --bg-deep: #191512;
  --surface: rgba(255, 248, 238, 0.7);
  --surface-strong: rgba(255, 248, 238, 0.9);
  --text: #201814;
  --muted: #655347;
  --line: rgba(32, 24, 20, 0.12);
  --accent: #a66a2c;
  --accent-soft: #d5ab7c;
  --shadow: 0 24px 80px rgba(27, 18, 13, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(166, 106, 44, 0.25), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(32, 24, 20, 0.08), transparent 20%),
    linear-gradient(180deg, #f6efe6 0%, #efe5d7 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(32, 24, 20, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 24, 20, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 18px 22px;
  background: rgba(255, 248, 238, 0.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(32, 24, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(25, 21, 18, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.brand,
.site-nav a,
.eyebrow,
.signature-tag,
.gallery-card span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand {
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  font-size: 0.77rem;
  color: var(--muted);
}

.lang-menu {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(32, 24, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.88);
  color: var(--muted);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 21, 18, 0.1);
}

.lang-trigger span,
.lang-trigger strong {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lang-trigger strong {
  color: var(--text);
}

.lang-trigger::after {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.lang-menu.is-open .lang-trigger::after {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(32, 24, 20, 0.08);
  background: rgba(255, 248, 238, 0.88);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(25, 21, 18, 0.12);
}

.lang-options[hidden] {
  display: none;
}

.lang-option {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-active {
  background: rgba(166, 106, 44, 0.12);
  color: #5c3410;
}

.hero,
.section,
.site-footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  min-height: calc(100vh - 120px);
  align-items: center;
  padding: 52px 0 32px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 9vw, 7.6rem);
}

h1 span,
h2 {
  color: #5c3410;
}

.hero-text,
.story-card p,
.service-card p,
.signature-item p,
.faq-item p,
.contact-copy p {
  line-height: 1.75;
  color: var(--muted);
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.gallery-card:hover,
.gallery-card:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fdf7ef;
  background: linear-gradient(135deg, #231915 0%, #7b4616 100%);
  box-shadow: 0 16px 36px rgba(59, 34, 16, 0.24);
}

.button-secondary {
  border-color: rgba(32, 24, 20, 0.12);
  background: rgba(255, 248, 238, 0.55);
}

.hero-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-highlights li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(25, 21, 18, 0.08), rgba(25, 21, 18, 0.5)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(20, 15, 12, 0.8));
}

.frame {
  position: absolute;
  z-index: 1;
  max-width: 240px;
  padding: 22px;
  color: #fdf7ef;
  background: rgba(19, 15, 12, 0.62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.frame p {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.frame span {
  line-height: 1.55;
}

.frame-large {
  right: 28px;
  bottom: 28px;
}

.frame-small.top {
  top: 28px;
  left: 28px;
}

.frame-small.bottom {
  left: 28px;
  bottom: 28px;
}

.section {
  padding: 90px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.about-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 24px;
}

.story-card,
.facts-card,
.service-card,
.signature-item,
.quote-card,
.faq-item,
.contact-panel {
  background: var(--surface);
  border: 1px solid rgba(32, 24, 20, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.story-card,
.facts-card,
.service-card,
.signature-item,
.quote-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.facts-card {
  display: grid;
  gap: 22px;
  align-content: start;
}

.fact-number {
  display: block;
  margin-bottom: 8px;
  color: #5c3410;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.service-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card h3,
.signature-item h3,
.lightbox-panel h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.signature-list,
.faq-list {
  display: grid;
  gap: 18px;
}

.signature-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.signature-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border: 0;
  border-radius: var(--radius-lg);
  text-align: left;
  color: #fdf7ef;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-card::before,
.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.gallery-card::before {
  background:
    linear-gradient(180deg, transparent 15%, rgba(15, 10, 8, 0.86)),
    url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  transition: transform 320ms ease;
}

.gallery-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, transparent 15%, rgba(15, 10, 8, 0.86)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.gallery-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, transparent 15%, rgba(15, 10, 8, 0.86)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.gallery-card:nth-child(4)::before {
  background:
    linear-gradient(180deg, transparent 15%, rgba(15, 10, 8, 0.86)),
    url("https://images.unsplash.com/photo-1551024601-bec78aea704b?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.gallery-card:nth-child(5)::before {
  background:
    linear-gradient(180deg, transparent 15%, rgba(15, 10, 8, 0.86)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.gallery-card:nth-child(6)::before {
  background:
    linear-gradient(180deg, transparent 15%, rgba(15, 10, 8, 0.86)),
    url("https://images.unsplash.com/photo-1511690743698-d9d85f2fbf38?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.gallery-card::after {
  background: linear-gradient(135deg, rgba(166, 106, 44, 0.18), transparent 40%);
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  transform: scale(1.05);
}

.gallery-card span,
.gallery-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.gallery-card span {
  margin-bottom: 10px;
  font-size: 0.72rem;
  color: rgba(253, 247, 239, 0.76);
}

.gallery-card strong {
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.quote-card {
  padding: 42px;
}

blockquote {
  max-width: 18ch;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: #5c3410;
}

.faq-item p {
  margin: 16px 0 0;
}

.contact-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  gap: 24px;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-links {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-links a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(32, 24, 20, 0.08);
  border-radius: 18px;
  background: var(--surface-strong);
  transition: transform 180ms ease, background 180ms ease;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  padding: 18px 0 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

.lightbox {
  width: min(92vw, 720px);
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(12, 10, 8, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox-backdrop {
  display: contents;
}

.lightbox-panel {
  position: relative;
  padding: 34px;
  color: #fdf7ef;
  background:
    linear-gradient(180deg, rgba(166, 106, 44, 0.22), rgba(19, 15, 12, 0.96)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-panel p:last-child {
  max-width: 46ch;
  line-height: 1.75;
  color: rgba(253, 247, 239, 0.82);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  border: 0;
  padding: 12px 18px;
  color: #fdf7ef;
  background: rgba(12, 10, 8, 0.72);
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .hero,
  .about-grid,
  .contact-panel,
  .signature-item {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 520px;
    order: -1;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding: 16px 18px;
    border-radius: 28px;
  }

  .site-nav {
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    gap: 20px;
  }

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

  .frame {
    max-width: 180px;
    padding: 16px;
  }

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

  .story-card,
  .facts-card,
  .service-card,
  .signature-item,
  .quote-card,
  .faq-item,
  .contact-panel {
    padding: 22px;
  }

  blockquote {
    max-width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
