:root {
  --ink: #171412;
  --muted: #675f57;
  --paper: #fffaf3;
  --surface: #ffffff;
  --soft: #f5eee4;
  --line: #e6d8c7;
  --gold: #c99a3e;
  --gold-dark: #8b6528;
  --rose: #7d2f43;
  --green: #36594a;
  --shadow: 0 22px 60px rgba(23, 20, 18, 0.14);
  --radius: 8px;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(201, 154, 62, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf3 0%, #fff 46%, #f7f0e7 100%);
  background-size: 72px 72px, auto;
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid rgba(230, 216, 199, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 154, 62, 0.56);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #f9e7b8, #c99a3e 48%, #2a2118 100%);
  color: #fffaf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand__text span {
  color: var(--muted);
  font-size: 12px;
}

.nav__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav__links,
.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  position: relative;
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav__link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.call-link {
  color: var(--gold-dark);
  font-weight: 800;
  white-space: nowrap;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav__toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d9ad55, #9f742d);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(139, 101, 40, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(139, 101, 40, 0.28);
}

.button--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
}

.button--ghost {
  background: rgba(255, 250, 243, 0.12);
  border-color: rgba(255, 250, 243, 0.56);
  color: #fffaf3;
  box-shadow: none;
}

.button--ghost-dark {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  content: "";
  background: linear-gradient(transparent, var(--paper));
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.85), rgba(23, 20, 18, 0.52), rgba(23, 20, 18, 0.18)),
    linear-gradient(0deg, rgba(23, 20, 18, 0.28), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 86px 124px;
  color: #fffaf3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}

h3 {
  font-size: 24px;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero__subtitle {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero__info span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.12);
  color: rgba(255, 250, 243, 0.9);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.split-layout,
.appointment-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.media-panel {
  position: relative;
}

.media-panel img,
.map-panel,
.contact-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  min-width: 138px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 16px 40px rgba(23, 20, 18, 0.18);
}

.experience-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  color: var(--gold-dark);
}

.experience-badge span {
  color: var(--muted);
  font-weight: 800;
}

.section-copy p {
  font-size: 16px;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.highlight-row span {
  padding: 10px 14px;
  border: 1px solid rgba(201, 154, 62, 0.38);
  border-radius: 999px;
  background: #fff;
  color: var(--gold-dark);
  font-weight: 900;
}

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

.section-heading p:last-child {
  max-width: 680px;
  margin-top: 14px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.product-card,
.why-item,
.testimonial-card,
.contact-card,
.form-panel {
  background: rgba(255, 255, 255, 0.86);
}

.service-card,
.product-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.product-card:hover,
.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 154, 62, 0.7);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #191511;
  color: var(--gold);
  font-size: 24px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: var(--muted);
}

.service-card li::before {
  content: "+";
  margin-right: 9px;
  color: var(--gold-dark);
  font-weight: 900;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 900;
}

.why-section {
  background: linear-gradient(135deg, #171412, #30251a);
}

.why-section h2,
.why-section .why-item p {
  color: #fffaf3;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-item {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.why-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.why-item p {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.product-card {
  min-height: 280px;
  scroll-snap-align: start;
}

.product-card__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 760px) 54px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.testimonial-card {
  min-height: 290px;
  display: grid;
  align-content: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 20px;
}

blockquote {
  margin: 18px auto;
  max-width: 640px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

cite {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 900;
}

.carousel-button {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 34px;
}

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

.gallery-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 240ms ease, opacity 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}

.gallery-item span,
.gallery-item strong {
  position: absolute;
  left: 18px;
  color: #fff;
}

.gallery-item span {
  top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.gallery-item strong {
  right: 18px;
  bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.appointment-section {
  background: linear-gradient(135deg, #fff7ed, #f0e0ce);
}

.booking-info {
  display: grid;
  gap: 6px;
  max-width: 300px;
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: #fff;
}

.booking-info span,
.booking-info a {
  color: var(--muted);
}

.booking-info a {
  font-weight: 900;
  color: var(--green);
}

.form-panel,
.contact-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf7;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 62, 0.16);
}

.form-panel > label,
.form-panel .button {
  margin-top: 16px;
}

.form-message {
  min-height: 28px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.map-panel {
  overflow: hidden;
  min-height: 520px;
}

.map-panel iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.contact-card dl {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-card dt {
  color: var(--gold-dark);
  font-weight: 900;
}

.contact-card dd {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 56px 0 26px;
  background: #171412;
  color: #fffaf3;
}

.brand--footer .brand__text span,
.site-footer p,
.site-footer a {
  color: rgba(255, 250, 243, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 243, 0.14);
  color: rgba(255, 250, 243, 0.58);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 8, 7, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__image {
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  color: #fff;
  font-weight: 900;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
}

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

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

.load-error {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
}

@media (max-width: 1060px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffaf3;
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open {
    display: grid;
  }

  .nav__links,
  .nav__actions {
    display: grid;
    gap: 4px;
  }

  .nav__link {
    padding: 12px 0;
  }

  .nav__link::after {
    bottom: 6px;
  }

  .call-link,
  .nav__actions .button {
    margin-top: 10px;
  }

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

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

@media (max-width: 760px) {
  .brand__text {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(23, 20, 18, 0.88), rgba(23, 20, 18, 0.54));
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__info {
    display: grid;
  }

  .section {
    padding: 68px 0;
  }

  .split-layout,
  .appointment-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid--three,
  .gallery-grid,
  .why-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-strip {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .testimonial-card {
    padding: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
