* {
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-muted: #c9a961;
  --charcoal: #1c1b1a;
  --sand: #f7f4ef;
  --stone: #e5ded0;
  --text: #2e2c2a;
  --body-font: "Inter", "Montserrat", sans-serif;
  --display-font: "Playfair Display", "Cormorant Garamond", serif;
  --radius: 18px;
  --shadow-soft: 0 20px 45px rgba(14, 12, 10, 0.12);
  scroll-padding-top: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4vw;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.logo {
  font-family: var(--display-font);
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-muted));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.section {
  padding: 6rem 4vw;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/nataliya-melnychuk-5ngCICAXiH0-unsplash.jpg")
      center/cover no-repeat,
    #000;
  position: relative;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      110deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.35) 70%
    ),
    rgba(0, 0, 0, 0.35);
}

.hero__content {
  position: relative;
  max-width: 640px;
  padding: 0 1rem;
}

.hero h1 {
  font-family: var(--display-font);
  font-size: clamp(48px, 8vw, 90px);
  margin: 0.5rem 0;
  letter-spacing: 0.08em;
}

.hero__tagline {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-muted));
  color: #1e1506;
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--gold);
}

.section__header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-family: var(--display-font);
  font-size: clamp(32px, 5vw, 56px);
  margin: 0.5rem 0;
}

.about {
  background: var(--sand);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.about__card,
.about__profile {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.about__profile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery {
  background: #fff;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact__details,
.contact__form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.contact__form .form__consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.form__consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.contact__form input,
.contact__form textarea {
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font: inherit;
  background: #fdfdfc;
}

.contact__form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__form button {
  margin-top: 0.5rem;
}

.form__status {
  font-size: 0.9rem;
  min-height: 1.2rem;
  margin-top: 0.5rem;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 340px;
  border: none;
}

.site-footer {
  background: var(--charcoal);
  color: #f5f1e8;
  padding: 3rem 4vw;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: inline;
  margin-top: 0.35rem;
  margin-right: 1rem;
}

.footer-links a:last-child {
  margin-right: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  margin-top: 0.35rem;
}

.socials svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.footer__bottom {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  z-index: 20;
}

.floating-whatsapp svg {
  width: 28px;
  fill: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 30;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .site-nav {
    gap: 0.9rem;
    font-size: 0.85rem;
  }

  .section {
    padding: 4.5rem 6vw;
  }

  .about__profile {
    text-align: center;
    align-items: center;
  }

  .hero__cta {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

