:root {
  --olive: #99905a;
  --olive-dark: #6d6640;
  --bg: #ffffff;
  --text: #4c4c4c;
  --line: #d7d7d7;
  --fs-xxs: 0.76rem;
  --fs-xs: 0.84rem;
  --fs-sm: 0.92rem;
  --fs-base: 1rem;
  --fs-md: 1.08rem;
  --fs-xl: clamp(1.55rem, 2.6vw, 2.35rem);
  --fs-hero: clamp(1.85rem, 3.8vw, 3.35rem);
  --lh-tight: 1.2;
  --lh-body: 1.55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: var(--lh-body);
  font-size: var(--fs-base);
}

img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

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

.container {
  width: min(1280px, 94%);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  min-height: 90px;
}

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

.brand-logo {
  width: 158px;
  max-width: 36vw;
  height: auto;
  border-radius: 0;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}

.menu a {
  padding: 0.58rem 0.56rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
}

.menu a:hover,
.menu a.active {
  background: #dddddd;
}

.cta {
  background: var(--olive);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.72rem 0.9rem;
  border-radius: 2px;
  font-size: 0.77rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}

.cta:hover {
  background: var(--olive-dark);
}

.menu-btn {
  display: none;
  justify-self: end;
  border: 1px solid #b8b8b8;
  background: #fff;
  padding: 0.5rem 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero {
  min-height: min(84vh, 920px);
  position: relative;
  display: grid;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  align-self: center;
  text-align: center;
  animation: fadeUp 900ms ease both;
}

.hero h1 {
  margin: 0;
  font-size: var(--fs-hero);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.06;
  font-weight: 400;
}

.hero p {
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  max-width: 980px;
  font-weight: 400;
  line-height: 1.45;
}


.scroll-down {
  margin: 2.2rem auto 0;
  width: 76px;
  height: 76px;
  border: 4px solid #ffffffcc;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: relative;
}

.scroll-down::after {
  content: "";
  width: 18px;
  height: 18px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg) translateY(-3px);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section:nth-child(odd) {
  background: #ffffff;
}

.section:nth-child(even) {
  background: #f7f5ec;
}

.kicker {
  margin: 0;
  color: var(--olive);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: var(--lh-tight);
}

h2 {
  margin: 0.3rem 0 1.25rem;
  color: #555;
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  font-weight: 400;
}

h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  color: #585858;
  line-height: var(--lh-tight);
  font-weight: 500;
}

.center {
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.8rem);
  align-items: center;
}

#about .two-col img,
#gift-cards .two-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-bottom: 2px solid #c7cdd5;
  margin: 2.4rem 0 3rem;
}

.tab {
  border: none;
  background: transparent;
  padding: 0.7rem 1.15rem;
  font-size: var(--fs-md);
  color: #505050;
  border-bottom: 4px solid transparent;
  cursor: pointer;
}

.tab.active {
  color: var(--olive-dark);
  border-color: var(--olive);
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  align-items: center;
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.gallery-grid img {
  border-radius: 0;
  width: 100%;
  height: auto;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 180ms ease;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

.gallery-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  place-items: center;
  z-index: 130;
  padding: 1rem;
}

.gallery-modal-overlay.open {
  display: grid;
}

.gallery-modal {
  width: min(980px, 96vw);
  position: relative;
  background: #101010;
  border: 1px solid #2a2a2a;
  color: #f2f2f2;
  padding: 1.2rem 1rem 1rem;
}

.gallery-title {
  margin: 0 0 0.7rem;
  color: #f2f2f2;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-media-wrap {
  min-height: min(70vh, 680px);
  display: grid;
  place-items: center;
}

.gallery-media-wrap img {
  width: 100%;
  max-height: min(70vh, 680px);
  object-fit: contain;
  border-radius: 0;
}

.gallery-caption {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: #dddddd;
}

.gallery-nav,
.gallery-close {
  position: absolute;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
}

.gallery-close {
  top: 0.45rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  line-height: 1;
  font-size: 1.2rem;
}

.gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 3.4rem;
  font-size: 2rem;
}

.gallery-nav.prev {
  left: 0.5rem;
}

.gallery-nav.next {
  right: 0.5rem;
}

.pricing-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.price-card {
  background: linear-gradient(180deg, #fffefb 0%, #fcf9ef 100%);
  border: 1px solid #ddd3ae;
  min-height: 174px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.72rem 0.78rem 0.82rem;
  box-shadow: 0 8px 18px rgba(58, 50, 18, 0.07);
  animation: fadeUp 440ms ease both;
}

.price-card h3 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.04rem, 1.55vw, 1.34rem);
  color: #4f4f4f;
  font-weight: 600;
}

.price-card p {
  margin: 0.22rem 0 0;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.45;
}

.price-value {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--olive-dark);
  font-size: clamp(1.16rem, 1.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price-badge {
  margin: 0 0 0.32rem;
  padding: 0.16rem 0.42rem;
  background: var(--olive);
  color: #fff;
  border-radius: 999px;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.price-card.featured {
  border-color: var(--olive);
  box-shadow: 0 16px 30px rgba(72, 62, 24, 0.16);
}

.price-card:nth-child(1) { animation-delay: 40ms; }
.price-card:nth-child(2) { animation-delay: 80ms; }
.price-card:nth-child(3) { animation-delay: 120ms; }
.price-card:nth-child(4) { animation-delay: 160ms; }
.price-card:nth-child(5) { animation-delay: 200ms; }
.price-card:nth-child(6) { animation-delay: 240ms; }
.price-card:nth-child(7) { animation-delay: 280ms; }
.price-card:nth-child(8) { animation-delay: 320ms; }

.pricing-trust {
  margin: -0.45rem 0 0.35rem;
  color: #696042;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
}

.pricing-note {
  margin: 0 0 0.95rem;
  color: #5f5f5f;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
}

.pricing-bundles {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  justify-items: center;
}

.bundle-card {
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 0.95rem 1rem;
  width: min(100%, 560px);
}

.bundle-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #5a5a5a;
}

.bundle-card p {
  margin: 0.35rem 0 0;
  font-size: var(--fs-sm);
  color: #666;
}

.ghost-btn {
  display: inline-block;
  border: 2px solid var(--olive);
  color: var(--olive-dark);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  margin-top: 0.6rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
}

.specials-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

#specials {
  border-top: 1px solid #d8cfaa;
}

.form {
  display: grid;
  gap: 0.95rem;
}

.form label {
  font-weight: 700;
  color: #4f4f4f;
  display: grid;
  gap: 0.3rem;
  font-size: var(--fs-sm);
  line-height: 1.35;
}

.form input {
  border: 2px solid #b9b9b9;
  background: #ffffff;
  padding: 0.75rem 0.8rem;
  font-size: var(--fs-base);
}

.form button {
  width: fit-content;
  border: 1px solid #8f8f8f;
  background: #b9b9b9;
  color: #444;
  padding: 0.65rem 1.2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0.2rem 0 0;
  font-size: var(--fs-sm);
  color: #4a4a4a;
}

.form-status.is-success {
  color: #2f6d3a;
}

.form-status.is-error {
  color: #8a2f2f;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 1.6rem;
  align-items: start;
}

.service-card p,
.two-col p {
  font-size: clamp(1rem, 1.22vw, 1.1rem);
  font-weight: 400;
  line-height: var(--lh-body);
}

.contact-details h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
}

.contact-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.35rem;
}

.contact-item p {
  margin: 0;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: var(--lh-body);
}

.contact-icon {
  width: 78px;
  height: 78px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-size: 2rem;
  display: grid;
  place-items: center;
}

.contact-icon-svg {
  width: 52%;
  height: 52%;
  fill: var(--olive);
}

.accent-text {
  color: var(--olive);
}

.contact-wrap iframe {
  border: 0;
  width: 100%;
  height: clamp(360px, 34vw, 440px);
  min-height: 360px;
}

.mini {
  padding: 4rem 0;
}

.page-hero {
  padding: clamp(3.2rem, 8vw, 6rem) 0 2.4rem;
  background: #ffffff;
}

.page-hero h1 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  font-weight: 400;
  color: #555;
}

.page-hero-sub {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.blog-section {
  padding-top: 1rem;
}

.blog-layout {
  display: grid;
  gap: 1.4rem 1.8rem;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
}

.blog-main {
  display: grid;
  gap: 1.4rem;
}

.blog-filter-summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: #5a5a5a;
  background: #fbfaf5;
  border: 1px solid #e2dcc5;
  padding: 0.55rem 0.7rem;
}

.blog-filter-summary[hidden] {
  display: none;
}

.blog-filter-summary button {
  border: 1px solid #cfc6a1;
  background: #fff;
  color: var(--olive-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

.post-link {
  display: block;
}

.post-link .post-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-link:hover .post-card {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.post-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  align-items: start;
}

.post-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  background: #f7f7f7;
  border-radius: 0;
}

.post-content {
  padding: 1rem 1.1rem 1.2rem;
}

.post-meta {
  margin: 0 0 0.35rem;
  color: var(--olive);
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.post-content h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 400;
}

.post-content p {
  margin: 0;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sidebar-card {
  border: 1px solid #dfdfdf;
  background: #fff;
  padding: 0.9rem 0.95rem;
}

.sidebar-card h3 {
  margin: 0 0 0.65rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: #4e4e4e;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list button {
  border: 1px solid #d5d5d5;
  background: #f9f9f9;
  color: #595959;
  padding: 0.25rem 0.45rem;
  font-size: var(--fs-xxs);
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

.tag-list button:hover,
.tag-list button.active {
  border-color: var(--olive);
  background: #f2eedc;
  color: #4f4f4f;
}

.post-link.is-hidden {
  display: none;
}

.blog-empty {
  margin: 0;
  border: 1px dashed #d5cba3;
  background: #fdfaf0;
  color: #666;
  padding: 0.7rem 0.8rem;
  font-size: var(--fs-sm);
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li + li {
  margin-top: 0.5rem;
}

.sidebar-list a {
  font-size: var(--fs-sm);
  color: #545454;
}

footer {
  background: var(--olive);
  padding: 1.15rem 0;
  border-top: 1px solid #8a804c;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: var(--fs-sm);
  color: #ffffff;
}

.footer-links {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: var(--fs-xs);
}

.footer-social {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f4f0d8;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.16);
}

.social-icon i {
  font-size: 0.9rem;
}

.legal-main {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dfdfdf;
  padding: clamp(1rem, 2.6vw, 2rem);
}

.legal-content h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
}

.legal-content h2 {
  margin: 1.2rem 0 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
}

.legal-content p {
  margin: 0.5rem 0;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

.legal-content ul {
  margin: 0.35rem 0 0.8rem 1.1rem;
}

.legal-content li {
  margin: 0.28rem 0;
  font-size: var(--fs-base);
}

.legal-date {
  color: #6d6d6d;
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}

.article-main {
  padding: clamp(2rem, 5vw, 3.4rem) 0;
}

.article-wrap {
  max-width: 930px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dfdfdf;
  padding: clamp(1rem, 2.4vw, 2rem);
}

.breadcrumbs {
  margin: 0 0 0.65rem;
  font-size: var(--fs-xs);
  color: #6b6b6b;
}

.breadcrumbs a {
  color: #6b6b6b;
}

.breadcrumbs a:hover {
  color: var(--olive);
}

.article-meta {
  margin: 0 0 0.45rem;
  color: var(--olive);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-wrap h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 400;
}

.article-wrap img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 1rem;
}

.article-wrap p {
  margin: 0.7rem 0;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

.article-list {
  margin: 0.55rem 0 0.2rem 1.15rem;
  padding: 0;
}

.article-list li {
  margin: 0.5rem 0 0.7rem;
  padding-left: 0.2rem;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

.article-list li p {
  margin: 0.4rem 0;
}

.article-tags {
  margin: 1rem 0 0.35rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
}

.article-tags-label {
  font-size: var(--fs-xs);
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.article-tag {
  border: 1px solid #d5d5d5;
  background: #f9f9f9;
  color: #595959;
  padding: 0.2rem 0.45rem;
  font-size: var(--fs-xxs);
}

.article-tag:hover {
  border-color: var(--olive);
  background: #f2eedc;
  color: #4f4f4f;
}

.article-back {
  margin-top: 1.25rem;
}

.error-404 {
  min-height: clamp(520px, 76vh, 760px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(153, 144, 90, 0.11), transparent 36%),
    radial-gradient(circle at 85% 90%, rgba(153, 144, 90, 0.09), transparent 40%),
    linear-gradient(180deg, #fdfcf7 0%, #f8f5ea 100%);
}

.error-shell {
  max-width: 920px;
}

.error-card {
  background: #fff;
  border: 1px solid #dfd9c1;
  box-shadow: 0 16px 36px rgba(44, 40, 22, 0.12);
  padding: clamp(1.4rem, 3.6vw, 2.9rem);
}

.error-code {
  margin: 0.2rem 0 0.45rem;
  color: var(--olive);
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.error-card h1 {
  margin: 0;
}

.error-card .page-hero-sub {
  max-width: 640px;
  margin: 0.85rem auto 0;
}

.error-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-secondary {
  border-color: #c8c8c8;
  color: #5f5f5f;
}

.error-secondary:hover {
  border-color: var(--olive);
  color: var(--olive-dark);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.72);
  display: none;
  place-items: center;
  z-index: 120;
  padding: 1.2rem 0.4rem;
}

.modal-overlay.open {
  display: grid;
}

.appointment-modal {
  width: min(760px, 98vw);
  max-height: 96vh;
  overflow-y: auto;
  background: #ffffff;
  border: 4px solid #1d1d1d;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.3rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.modal-header {
  background: var(--olive);
  color: #fff;
  padding: 0.85rem 1rem;
}

.modal-header h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--fs-md);
  letter-spacing: 0.01em;
  color: #fff;
}

.modal-note {
  margin: 0;
  padding: 1rem;
  background: #f6f6f6;
  font-size: var(--fs-xs);
  line-height: 1.45;
}

.appointment-form {
  padding: 0 0.2rem 1.4rem;
}

.modal-section {
  padding: 1.05rem 0.75rem 0.95rem;
  border-top: 1px solid #d7d7d7;
}

.modal-section h3 {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  color: #8f8240;
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
}

.modal-grid {
  display: grid;
  gap: 0.72rem;
}

.modal-grid.one {
  grid-template-columns: 1fr;
}

.modal-grid.two {
  grid-template-columns: 1fr 1fr;
}

.appointment-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1f1f1f;
}

.appointment-form .couples-room-row[hidden] {
  display: none;
}

.appointment-form .couples-room-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1f1f1f;
}

.appointment-form .couples-room-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--olive);
}

.appointment-form .field-name {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.22rem;
}

.appointment-form .field-name em {
  color: #c71f1f;
  font-style: normal;
}

.appointment-form label > input,
.appointment-form label > select,
.appointment-form label > textarea {
  display: block;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid #cdd1d5;
  background: #cfd4d8;
  color: #444;
  padding: 0.5rem 0.5rem;
  font-size: var(--fs-xs);
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  border-radius: 4px;
}

.appointment-form input,
.appointment-form select {
  height: 40px;
}

.modal-submit {
  border: 0;
  background: var(--olive);
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  padding: 0.58rem 1.1rem;
  font-size: var(--fs-xs);
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .menu a {
    font-size: 0.74rem;
    padding: 0.55rem 0.45rem;
  }

  .cta {
    font-size: 0.74rem;
    padding: 0.68rem 0.72rem;
  }

  .brand-logo {
    width: 144px;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .nav-wrap {
    grid-template-columns: auto auto auto;
  }

  .menu-btn {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: 95px;
    left: 0;
    right: 0;
    background: #efefef;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .menu.open {
    display: flex;
  }

  .topbar .cta {
    display: inline-block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 460px);
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    text-align: center;
    z-index: 95;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    border-radius: 6px;
    padding: 0.92rem 1rem;
    font-size: var(--fs-sm);
    line-height: 1.2;
  }

  .two-col,
  .service-card,
  .specials-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .pricing-bundles {
    grid-template-columns: 1fr;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card img {
    min-height: 240px;
  }

  .modal-header h2 {
    font-size: var(--fs-base);
  }

  .modal-section h3 {
    font-size: var(--fs-sm);
  }

  .modal-grid.two {
    grid-template-columns: 1fr;
  }

  .appointment-modal {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .appointment-form {
    padding: 0 0.2rem 5.2rem;
  }

  .modal-submit {
    width: calc(100% - 0.4rem);
    margin: 0 auto;
    display: block;
    position: sticky;
    bottom: 0.55rem;
    z-index: 2;
  }

  .gallery-nav {
    width: 2rem;
    height: 2.9rem;
    font-size: 1.7rem;
  }

  .contact-item {
    grid-template-columns: 70px 1fr;
    margin-bottom: 1.8rem;
  }

  .contact-icon {
    width: 62px;
    height: 62px;
    font-size: 1.6rem;
  }

  .contact-wrap iframe {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 132px;
    max-width: 46vw;
  }

  .hero {
    min-height: 70vh;
  }
  .topbar .cta {
    width: min(94vw, 440px);
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    font-size: var(--fs-xs);
    padding: 0.8rem 0.85rem;
  }

  .scroll-down {
    width: 58px;
    height: 58px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--fs-sm);
  }

  .footer-links {
    order: 2;
  }

  .footer-social {
    order: 3;
  }
}
