@font-face {
  font-family: "BenguiatBook";
  src: url("../fonts/fonnts.com-Benguiat-Pro-ITC-Book-.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "BenguiatMedium";
  src: url("../fonts/fonnts.com-Benguiat-Pro-ITC-Medium.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #772f42;
  --bg-deep: #5a2030;
  --paper: #f6eee7;
  --text: #2f1a21;
  --text-light: rgba(255, 243, 236, 0.82);
  --gold: #d4ae74;
  --shadow: 0 28px 64px rgba(33, 10, 18, 0.26);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background:
    radial-gradient(circle at top right, rgba(212, 174, 116, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(244, 223, 198, 0.08), transparent 24%),
    var(--bg);
  color: #fff6ef;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 7, 10, 0.05) 0%, rgba(17, 7, 10, 0.34) 100%),
    radial-gradient(circle at 20% 20%, rgba(212, 174, 116, 0.08), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background-color: rgba(119, 47, 66, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(120px, 16vw, 180px);
  height: auto;
}

.hero-title,
.section-header h2,
.service-card h3,
.contact-panel h3,
.map-panel h3 {
  font-family: "BenguiatMedium", Georgia, serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "BenguiatBook", Georgia, serif;
  letter-spacing: 0.01em;
  color: rgba(255, 243, 236, 0.86);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  transition: opacity 180ms ease;
}

.nav-links a:hover {
  opacity: 0.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 50px;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button i {
  font-size: 1rem;
  margin-right: 0.1rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e7c590 100%);
  color: #4a1f2d;
  box-shadow: 0 18px 32px rgba(22, 6, 12, 0.24);
}

.button-secondary {
  background: linear-gradient(135deg, var(--gold) 0%, #e7c590 100%);
  color: #4a1f2d;
  box-shadow: 0 18px 32px rgba(22, 6, 12, 0.24);
}

.button-soft {
  background: linear-gradient(135deg, var(--gold) 0%, #e7c590 100%);
  color: #4a1f2d;
  box-shadow: 0 18px 32px rgba(22, 6, 12, 0.24);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 7rem 0 3rem;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: fadeUp 700ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 247, 240, 0.08);
  border: 1px solid rgba(255, 239, 229, 0.16);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 1.25rem 0 1rem;
  font-size: clamp(3.1rem, 8vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  max-width: 10ch;
}

.hero-subtitle {
  font-family: "BenguiatBook", Georgia, serif;
  font-size: clamp(1.08rem, 2.2vw, 1.4rem);
  color: rgba(255, 243, 236, 0.9);
  max-width: 32rem;
  line-height: 1.7;
  margin: 0 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 247, 240, 0.08);
  border: 1px solid rgba(255, 239, 229, 0.14);
  color: rgba(255, 243, 236, 0.88);
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  max-width: 100%;
  animation: fadeUp 900ms ease both;
}

.hero-card {
  position: absolute;
  inset: 0;
  max-width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 239, 229, 0.12);
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  animation: slideshow 12s infinite;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 8, 13, 0.06), rgba(23, 8, 13, 0.74));
}

.hero-slide > div {
  position: relative;
  z-index: 1;
  max-width: 22rem;
}

.hero-slide strong {
  display: block;
  font-family: "BenguiatMedium", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.hero-slide span {
  display: block;
  color: rgba(255, 243, 236, 0.82);
  line-height: 1.7;
}

.slide-1 {
  background:
    linear-gradient(180deg, rgba(18, 7, 11, 0.1), rgba(18, 7, 11, 0.64)),
    url("slider-01.jpg") center/cover no-repeat;
  animation-delay: 0s;
}

.slide-2 {
  background:
    linear-gradient(180deg, rgba(18, 7, 11, 0.1), rgba(18, 7, 11, 0.64)),
    url("slider-02.jpg") center/cover no-repeat;
  animation-delay: 4s;
}

.slide-3 {
  background:
    linear-gradient(180deg, rgba(18, 7, 11, 0.1), rgba(18, 7, 11, 0.64)),
    url("slider-03.jpg") center/cover no-repeat;
  animation-delay: 8s;
}

.hero-overlay-logo {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: min(210px, 34%);
  padding: 1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 247, 240, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 239, 229, 0.14);
  z-index: 3;
}

.hero-overlay-logo img {
  width: 100%;
  height: auto;
}

.hero-note,
.hero-contact {
  position: absolute;
  z-index: 3;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 240, 0.09);
  border: 1px solid rgba(255, 239, 229, 0.14);
  box-shadow: 0 20px 34px rgba(20, 6, 11, 0.18);
}

.hero-note {
  left: -1rem;
  top: 4rem;
  width: min(250px, 52%);
  padding: 1rem 1.1rem;
}

.hero-contact {
  right: -1rem;
  bottom: 3rem;
  width: min(300px, 62%);
  padding: 1rem 1.1rem;
}

.hero-note strong,
.hero-contact strong {
  display: block;
  color: #fffaf5;
  margin-bottom: 0.3rem;
}

.hero-note span,
.hero-contact span {
  display: block;
  color: rgba(255, 243, 236, 0.78);
  line-height: 1.6;
  font-size: 0.93rem;
}

.slider-dots {
  position: absolute;
  left: 2rem;
  bottom: 1.6rem;
  display: flex;
  gap: 0.55rem;
  z-index: 3;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 243, 236, 0.28);
  animation: dots 12s infinite;
}

.slider-dots span:nth-child(1) {
  animation-delay: 0s;
}

.slider-dots span:nth-child(2) {
  animation-delay: 4s;
}

.slider-dots span:nth-child(3) {
  animation-delay: 8s;
}

.content-section {
  padding: 5rem 0;
}

.section-surface {
  background: var(--paper);
  color: var(--text);
  border-radius: 38px 38px 0 0;
  margin-top: -1rem;
  position: relative;
  z-index: 5;
  box-shadow: 0 -18px 42px rgba(31, 10, 17, 0.14);
}

.section-header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  color: #5e2132;
}

.section-header p {
  margin: 0;
  max-width: 42rem;
  color: #684d56;
  line-height: 1.8;
  font-size: 1.02rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffaf6 0%, #f4e6dc 100%);
  border: 1px solid rgba(119, 47, 66, 0.1);
  box-shadow: 0 16px 32px rgba(56, 21, 33, 0.08);
}

.service-index {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(119, 47, 66, 0.08);
  color: #772f42;
  font-weight: 700;
}

.service-index i {
  font-size: 1.15rem;
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  color: #5e2132;
}

.service-card p {
  margin: 0;
  color: #6a5058;
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-panel,
.map-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffaf6 0%, #f2e3d7 100%);
  border: 1px solid rgba(119, 47, 66, 0.1);
  box-shadow: 0 16px 32px rgba(56, 21, 33, 0.08);
}

.contact-panel p,
.map-panel p {
  margin: 0 0 1.1rem;
  color: #6a5058;
  line-height: 1.75;
}

.contact-items {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.contact-item {
  display: block;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fffdfb;
  border: 1px solid rgba(119, 47, 66, 0.08);
}

.contact-item strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.28rem;
  color: #772f42;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.contact-item span {
  display: block;
  color: #3d2730;
  line-height: 1.6;
}

.contact-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: stretch;
  justify-content: flex-start;
}

.contact-actions .button,
.map-actions .button {
  flex: 0 0 auto;
}

.map-panel {
  display: grid;
  gap: 1rem;
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(119, 47, 66, 0.08);
  min-height: 100%;
  background: #ead8cb;
}

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

.footer {
  padding: 1.5rem 0 3rem;
  background: var(--paper);
  color: #7a6068;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(119, 47, 66, 0.1);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, #e7c590 100%);
  color: #4a1f2d;
  box-shadow: 0 18px 30px rgba(22, 6, 12, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 40;
}

.back-to-top i {
  font-size: 1.2rem;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

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

@keyframes slideshow {
  0%, 28% {
    opacity: 1;
  }
  33%, 100% {
    opacity: 0;
  }
}

@keyframes dots {
  0%, 28% {
    opacity: 1;
    transform: scale(1.15);
    background: var(--gold);
  }
  33%, 100% {
    opacity: 0.35;
    transform: scale(1);
    background: rgba(255, 243, 236, 0.28);
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .services-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 540px;
  }

  .map-frame iframe {
    min-height: 320px;
  }
}

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

  .nav {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 0 1rem;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: clamp(118px, 34vw, 148px);
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow: hidden;
    scrollbar-width: none;
  }

  .nav-links a {
    font-size: 0.95rem;
    white-space: nowrap;
    gap: 0.35rem;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .contact-actions .button,
  .map-actions .button {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.4rem, 13vw, 4.1rem);
  }

  .hero-stage {
    min-height: 470px;
  }

  .hero-slide {
    padding: 1.25rem;
  }

  .hero-overlay-logo {
    width: 160px;
    right: 1rem;
  }

  .hero-note,
  .hero-contact {
    position: static;
    width: auto;
    margin-top: 0.9rem;
  }

  .slider-dots {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .content-section {
    padding: 4rem 0;
  }

  .section-surface {
    border-radius: 28px 28px 0 0;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }
}
