:root {
  --black: #1a1009;
  --white: #ffffff;
  --cream: #f5ead0;
  --gold: #D4A843;
  --gold-light: #DDB850;
  --gray: #1a1a1a;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --pattern-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A843' stroke-width='0.6'%3E%3Cpolygon points='30,2 37,10 46,7 43,16 51,23 42,23 39,32 30,28 21,32 18,23 9,23 17,16 14,7 23,10'/%3E%3Cpolygon points='30,12 35,18 42,16 40,23 46,28 39,28 37,35 30,32 23,35 21,28 14,28 20,23 18,16 25,18'/%3E%3Crect x='24' y='24' width='12' height='12' transform='rotate(45 30 30)'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3Ccircle cx='0' cy='0' r='1.5'/%3E%3Ccircle cx='60' cy='0' r='1.5'/%3E%3Ccircle cx='0' cy='60' r='1.5'/%3E%3Ccircle cx='60' cy='60' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  color: #f5ead0;
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

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

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

.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url('../images/pattern.jpg');
  background-size: 180px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  transition: var(--transition);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 2, 0.18);
  z-index: 0;
}

.nav-logo,
.nav-links,
.lang-switcher,
.nav-hamburger {
  position: relative;
  z-index: 1;
}

.nav.scrolled {
  box-shadow: 0 1px 0 rgba(212, 168, 67, 0.15);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 23px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 300;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(212, 168, 67, 0.6);
  font-family: var(--font-sans);
  display: block;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 42px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

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

.nav-mobile {
  position: fixed;
  inset: 0;
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-link {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.nav-mobile-link:hover {
  opacity: 0.7;
}

.hero {
  height: 100vh;
  padding-top: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-bg);
  background-size: 60px 60px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 32px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  display: block;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-opening {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream);
  opacity: 0.55;
  letter-spacing: 0.12em;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  border: 1px solid rgba(212, 168, 67, 0.7);
  color: var(--gold);
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  background: rgba(212, 168, 67, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.2), inset 0 0 0 1px rgba(212, 168, 67, 0.3);
}

@media (hover: hover) {
  .hero-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.4);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-cta:active {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (hover: none) {
  .hero-cta:active {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.4);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  text-decoration: none;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.story {
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  padding: 120px 60px;
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  outline: 1px solid rgba(212, 168, 67, 0.3);
  outline-offset: 12px;
  background: linear-gradient(135deg, #1a1209, #2a1f0a);
}

.story-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
}

.story-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0;
}

.story-body p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--cream);
  opacity: 0.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.offer {
  background: #f5ead0;
  padding: 120px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 48px;
  color: #1a1a1a;
  font-weight: 300;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #666;
  font-style: italic;
  margin-top: 12px;
}

.offer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.offer-card {
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  border-top: 2px solid var(--gold);
  overflow: hidden;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.15);
}

.offer-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1209, #2a1f0a);
  display: block;
}

.offer-card-body {
  padding: 36px 32px;
}

.offer-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
}

.offer-card-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.8;
  font-weight: 300;
}

.creations {
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  padding: 120px 60px;
}

.creations-title {
  color: var(--white);
}

.creations-subtitle {
  color: var(--gold);
  font-style: italic;
}

.creations-grid {
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.creation-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.creation-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1209, #2a1f0a);
  transition: transform 0.6s ease;
}

.creation-item:hover img {
  transform: scale(1.05);
}

.creation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.creation-item:hover .creation-overlay {
  opacity: 1;
}

.creation-name {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 8px;
}

.creation-caption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 300;
}

.gallery {
  background: #f5ead0;
  padding: 120px 60px;
}

.gallery-title {
  color: #1a1a1a;
}

.gallery-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1209, #2a1f0a);
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 168, 67, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-footer {
  text-align: center;
  margin-top: 48px;
}

.gallery-instagram {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.gallery-instagram:hover {
  opacity: 0.7;
}

.visit {
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  padding: 120px 60px;
}

.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
}

.visit-intro {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 420px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-icon {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.visit-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.7;
}

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

.visit-cta {
  margin-top: 36px;
}

.visit-socials {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  opacity: 0.5;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--gold);
  opacity: 1;
}

.visit-map {
  width: 100%;
  height: 450px;
  position: relative;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) brightness(1.08) contrast(0.92) saturate(0.85);
}

.footer {
  background: url('../images/pattern.jpg') repeat;
  background-size: 180px;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-bg);
  background-size: 60px 60px;
  opacity: 0.04;
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  border-radius: 50%;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 300;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.4;
  letter-spacing: 0.15em;
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream);
  opacity: 0.25;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .story-inner,
  .visit-inner {
    grid-template-columns: 1fr;
  }

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

  .story-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px 12px 6px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    font-size: 16px;
    gap: 6px;
  }

  .nav-logo-img {
    height: 56px;
  }

  .nav-hamburger {
    display: flex;
  }

  .lang-btn {
    padding: 6px 11px;
    font-size: 11px;
  }

  .hero {
    padding: 0 20px;
  }

  .story,
  .offer,
  .creations,
  .gallery,
  .visit {
    padding: 80px 24px;
  }

  .visit-map {
    height: 280px;
  }

  .footer {
    padding: 32px 24px;
  }

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

  .gallery-item--tall {
    grid-row: span 1;
  }

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

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

  .story-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

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