:root {
  --black: #101010;
  --ink: #171717;
  --muted: #6f695e;
  --cream: #fbfaf7;
  --cream2: #f4efe3;
  --gold: #b2995d;
  --gold-dark: #8a713c;
  --line: rgba(178,153,93,.28);
  --white: #fff;
  --shadow: 0 22px 58px rgba(35,29,18,.10);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: min(390px, 45vw); }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-size: .92rem;
  letter-spacing: .03em;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }

.menu-btn {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-btn span { width: 21px; height: 2px; border-radius: 999px; background: var(--black); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 80% 25%, rgba(178,153,93,.11), transparent 22rem),
    linear-gradient(115deg,#fff 0%,#fff 55%,#f7f3e9 100%);
}
.hero__decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(178,153,93,.18);
}
.hero__decoration--one { width: 430px; height: 430px; right: -120px; top: 8%; }
.hero__decoration--two { width: 160px; height: 160px; left: -55px; bottom: 5%; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 70px;
}
.overline {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.overline--gold { color: #d7bd7f; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.045em;
}
.hero h1 em {
  display: block;
  margin-top: 12px;
  font-size: .52em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .015em;
}
.rule {
  width: 82px;
  height: 2px;
  margin: 28px 0;
  background: linear-gradient(90deg, var(--gold-dark), #d3bd80);
}
.rule--center { margin: 24px auto 0; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 50px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--black); color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.button--light { background: #fff; border: 1px solid var(--gold); color: #302919; }

.hero__details {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero__details a { text-decoration: none; min-width: 190px; }
.detail__label {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero__details strong {
  display: block;
  margin-top: 4px;
  font-size: .96rem;
  overflow-wrap: anywhere;
}

.hero__logo-card {
  min-height: 390px;
  padding: 48px 40px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,240,226,.96));
  box-shadow: var(--shadow);
}
.hero__logo-card img { width: 100%; position: relative; z-index: 2; }
.hero__rings, .hero__rings::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(178,153,93,.19);
}
.hero__rings { width: 330px; height: 330px; right: -100px; top: -120px; }
.hero__rings::before { width: 180px; height: 180px; left: -310px; top: 370px; }

.section { padding: 100px 0; }
.services { background: linear-gradient(180deg,#fff 0%,#fbfaf6 100%); }
.section-heading { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-heading h2, .contact__intro h2, .schedule h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
}
.section-heading h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 210px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(178,153,93,.21);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(36,29,17,.055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(178,153,93,.07);
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(178,153,93,.56);
  box-shadow: 0 23px 44px rgba(36,29,17,.10);
}
.service-card__number {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--cream2);
  border: 1px solid rgba(178,153,93,.22);
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
}
.service-card h3 {
  margin: 48px 0 0;
  max-width: 90%;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.24;
}
.service-card--featured { grid-column: 2 / 3; }

.schedule { padding: 58px 0; }
.schedule__panel {
  min-height: 190px;
  padding: 46px 54px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--black);
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.schedule__panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 76px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(#e0c786, var(--gold));
}
.schedule__panel::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -105px;
  top: -130px;
  border: 1px solid rgba(211,189,128,.23);
  border-radius: 50%;
}
.schedule h2 { font-size: clamp(2.25rem, 4.6vw, 3.8rem); }
.schedule__time {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}
.schedule__time i { width: 42px; height: 1px; background: var(--gold); }

.contact { background: linear-gradient(180deg,#fff,#faf7ef); }
.contact__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.contact__intro h2 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
.contact__cards { display: grid; gap: 18px; }
.contact-card {
  min-width: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(178,153,93,.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(36,29,17,.055);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(178,153,93,.55);
  box-shadow: 0 18px 40px rgba(36,29,17,.095);
}
.contact-card__icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  border: 1px solid rgba(178,153,93,.23);
  background: var(--cream2);
  color: var(--gold-dark);
  font-size: 1.25rem;
}
.contact-card span:last-child { min-width: 0; }
.contact-card small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .71rem;
}
.contact-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}
.contact-card b {
  display: inline-block;
  margin-top: 7px;
  color: var(--gold-dark);
  font-size: .85rem;
}

.brand-strip {
  padding: 52px 0;
  border-top: 1px solid rgba(178,153,93,.17);
}
.brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand-strip img { width: min(470px, 50%); }
.brand-strip__inner > div { display: grid; gap: 8px; text-align: right; }
.brand-strip a { text-decoration: none; overflow-wrap: anywhere; }

.footer { padding: 26px 0; background: #0e0e0e; color: #e7e2d9; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer__inner > span { font-family: var(--serif); }
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { text-decoration: none; color: #c9c1b2; font-size: .88rem; }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .22s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Progressive enhancement: the page remains fully visible even if JS does not load. */
.js .motion {
  opacity: 0;
  transform: translateY(18px);
}
.js .motion.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}

@media (max-width: 960px) {
  .header__inner { min-height: 74px; }
  .brand { width: min(320px, 65vw); }
  .menu-btn { display: flex; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 14px 20px 20px;
    display: grid;
    gap: 3px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: .2s ease;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 11px 8px; border-radius: 8px; }
  .nav a::after { display: none; }
  .hero { min-height: auto; padding: 62px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 46px; }
  .hero__content { text-align: center; }
  .hero__content .rule { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__details { justify-content: center; }
  .hero__logo-card { min-height: 300px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 38px; }
  .contact__intro { text-align: center; }
  .contact__intro .rule { margin-left: auto; margin-right: auto; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand { width: min(290px, 72vw); }
  .hero { padding: 46px 0 58px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero__details { display: grid; gap: 16px; }
  .hero__details a { min-width: 0; }
  .hero__logo-card { min-height: 225px; padding: 28px 22px; border-radius: 24px; }
  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 165px; }
  .service-card h3 { margin-top: 34px; }
  .schedule { padding: 42px 0; }
  .schedule__panel { padding: 36px 28px; align-items: flex-start; flex-direction: column; }
  .schedule__time { font-size: 1.7rem; }
  .contact-card { align-items: flex-start; padding: 20px; }
  .brand-strip__inner { flex-direction: column; text-align: center; }
  .brand-strip img { width: min(500px, 100%); }
  .brand-strip__inner > div { text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer nav { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
