:root {
  --bg: #0c0b09;
  --bg-soft: #151311;
  --panel: rgba(20, 17, 13, 0.92);
  --panel-light: rgba(255, 248, 233, 0.06);
  --text: #f7f0e5;
  --muted: #c8baa3;
  --gold: #dcc07b;
  --gold-deep: #b98d3e;
  --line: rgba(220, 192, 123, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.delnaro {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(220, 192, 123, 0.1), transparent 28%),
    linear-gradient(180deg, #0b0908 0%, #13100e 45%, #0b0908 100%);
  color: var(--text);
  line-height: 1.7;
}

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(9, 8, 7, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 168px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

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

.nav-links a:hover,
.info-list a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold) 0%, #f4dfaa 100%);
  color: #20170c;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(185, 141, 62, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(185, 141, 62, 0.28);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(220, 192, 123, 0.45);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 8, 0.92) 0%, rgba(11, 9, 8, 0.72) 45%, rgba(11, 9, 8, 0.84) 100%),
    url("hero-event.png");
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-grid,
.about-grid,
.experience-grid,
.contact-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy h1,
.about-copy h2,
.section-head h2,
.experience-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.hero-copy p,
.about-copy p,
.section-head p,
.contact-copy p,
.service-card p,
.experience-copy li {
  color: var(--muted);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.2rem;
}

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

.hero-highlights div,
.service-card,
.contact-box {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.hero-highlights div {
  padding: 1.2rem;
}

.hero-highlights strong,
.service-card h3,
.contact-box h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card,
.frame-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(220, 192, 123, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card img,
.frame-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-copy {
  padding-left: 1rem;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.center {
  text-align: center;
}

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

.service-card {
  padding: 2rem;
}

.service-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--text);
}

.experience-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.experience-visuals {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.tall-card {
  min-height: 460px;
}

.chef-card {
  align-self: end;
  min-height: 320px;
}

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

.gallery-item {
  grid-column: span 4;
  min-height: 260px;
  padding: 0.65rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-item.wide {
  grid-column: span 12;
  min-height: 430px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-box {
  padding: 2rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.info-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-list strong {
  color: var(--text);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner img {
  width: 140px;
}

.footer-inner p {
  color: #aa9d86;
  margin: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .experience-grid,
  .contact-grid,
  .service-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-left: 0;
  }

  .experience-visuals {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .header-inner,
  .footer-inner,
  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .experience-visuals {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    justify-content: center;
  }

  .info-list li {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.2rem 0;
  }

  .btn,
  .btn-secondary,
  .btn-outline {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
