:root {
  --ink: #1f1714;
  --brown: #8b5a2b;
  --brown-deep: #6f4420;
  --brown-mid: #b88455;
  --spot: #b88455;
  --cream: #fff8ef;
  --cream-2: #f7ead7;
  --cream-3: #f3e0c8;
  --sand: #f0e0cb;
  --text: #2b211c;
  --muted: #8a7464;
  --white: #ffffff;
  --shadow: rgba(48, 32, 20, 0.12);
  --radius: 24px;
  --line: #1f1714;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: #f3dcb8;
  background-image: url("../images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  overflow-x: hidden;
}
/* Keep content above the fixed background image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}
.site-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.site-content { flex: 1; }
a { color: var(--ink); text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Fredoka", sans-serif; line-height: 1.15; letter-spacing: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 2px dashed #2a201b;
  padding: 0 28px;
}
.header-inner {
  height: 78px;
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-cow {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid #2a201b;
  box-shadow: 0 3px 0 #d9b48c;
  background: #fff;
}
.site-logo strong {
  display: block;
  font: 700 22px/1.05 "Fredoka", sans-serif;
  color: #2a201b;
  white-space: nowrap;
}
.site-logo small {
  display: block;
  color: #9a7d64;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 2px solid #2a201b;
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch a {
  padding: 6px 11px;
  font: 800 12px/1.2 "Nunito", sans-serif;
  color: #2a201b;
}
.lang-switch a.active {
  background: #2a201b;
  color: #fff;
}
.lang-switch a:hover:not(.active) { background: #f3e6d5; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  background: transparent;
}
.main-nav a {
  padding: 10px 18px;
  border-radius: 999px;
  color: #2a201b;
  font: 700 15px/1 "Fredoka", sans-serif;
  border: 2px solid transparent;
  transition: .15s ease;
}
.main-nav a:hover {
  background: #f3e6d5;
}
.main-nav a.active {
  background: #1f1714;
  color: #fff;
  border-color: #1f1714;
  box-shadow: 0 4px 0 #b88455;
}
.menu-toggle {
  display: none;
  border: 2px solid #2a201b;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 18px;
  color: #2a201b;
}

/* Hero */
.home-hero,
.page-hero { text-align: center; }
.home-hero {
  position: relative;
  padding: 56px 24px 70px;
  overflow: hidden;
  background: transparent;
}
/* Hero no longer adds its own spots — full-page cow print handles it */
.hero-spots {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}
.hero-logo-badge {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #fff6ea 100%);
  border: 4px solid #2a201b;
  box-shadow: 0 8px 0 #c99663, 0 16px 30px rgba(48, 32, 20, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-cow {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
}
.hero-banner {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1080px, 94vw);
  height: auto;
  margin: 8px auto 22px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
}
.cow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff8ef;
  border: 2px solid #2a201b;
  color: #2a201b;
  font: 800 12px/1 "Nunito", sans-serif;
  letter-spacing: 1.4px;
  box-shadow: 0 3px 0 #d8b48d;
}
.hero-title,
.home-hero h1 {
  margin: 0 0 10px;
  font: 700 clamp(48px, 8vw, 84px)/0.95 "Fredoka", sans-serif;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow:
    -3px -3px 0 #2a201b,
     3px -3px 0 #2a201b,
    -3px  3px 0 #2a201b,
     3px  3px 0 #2a201b,
     0    8px 0 rgba(42, 32, 27, 0.08);
  -webkit-text-stroke: 0;
}
.home-hero .tagline {
  margin: 0 0 8px;
  font: 700 20px/1.3 "Fredoka", sans-serif;
  color: #2a201b;
}
.home-hero .sub {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #6f5745;
  font-weight: 700;
  font-size: 18px;
}
.hero-actions {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-actions .btn {
  position: relative;
  z-index: 6;
  pointer-events: auto;
}
.hero-wave {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #2a201b;
  border-radius: 999px;
  padding: 13px 28px;
  font: 700 16px/1 "Fredoka", sans-serif;
  transition: transform .15s, box-shadow .15s, background .15s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #1f1714;
  color: #fff;
  box-shadow: 0 5px 0 #b88455;
}
.btn-primary:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 7px 0 #b88455;
}
.btn-secondary {
  background: #fff8ef;
  color: #2a201b;
  box-shadow: 0 5px 0 #d8b48d;
}
.btn-secondary:hover {
  background: #fff;
  color: #2a201b;
  box-shadow: 0 7px 0 #c9a27a;
}
.btn-quiet {
  background: #f3e6d5;
  color: #2a201b;
  border: 2px solid #2a201b;
  box-shadow: none;
}

/* Sections */
.hearts-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 18px 0 8px;
  font-size: 20px;
}
.hearts-divider.compact { margin: 0 0 10px; font-size: 18px; }
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px 64px;
}
.section-wrap.narrow { max-width: 1040px; }
.section-heading { text-align: center; margin: 0 0 26px; }
.section-heading h2 {
  font-size: 32px;
  color: #2a201b;
  margin: 4px 0;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.feature-strip {
  max-width: 1100px;
  margin: 8px auto 40px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-strip article {
  background: rgba(255, 252, 247, 0.9);
  border: 2.5px dashed #2a201b;
  border-radius: 28px;
  padding: 28px 18px 22px;
  text-align: center;
  transition: .2s ease;
  box-shadow: 0 8px 24px rgba(48, 32, 20, 0.05);
  backdrop-filter: blur(2px);
}
.feature-strip article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(48, 32, 20, 0.08);
}
.feat-icon,
.feature-strip span,
.info-grid article > span,
.included-grid article > span,
.service-card > span,
.first-visit > span,
.share-card > span,
.discount-card > span {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 8px;
  line-height: 0;
}
.px-icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  vertical-align: middle;
}
.px-icon--hero {
  width: 22px;
  height: 22px;
}
.px-icon--inline {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}
.px-icon--tiny {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.px-icon--flip {
  transform: scaleX(-1);
}
.footer-hearts {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-hearts .px-icon {
  margin: 0;
}
.track-banner .px-icon {
  flex-shrink: 0;
}
.success-dialog span .px-icon,
.success-dialog > div > span {
  display: grid;
  place-items: center;
}
.success-dialog .px-icon {
  width: 64px;
  height: 64px;
}
.lightbox .px-icon {
  width: 28px;
  height: 28px;
}
.feature-strip h3 {
  font-size: 18px;
  color: #2a201b;
  margin: 4px 0 8px;
}
.feature-strip p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
  line-height: 1.55;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.kawaii-card {
  background: rgba(255, 253, 249, 0.92);
  border: 2.5px dashed #2a201b;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(48, 32, 20, 0.06);
  transition: transform .2s, box-shadow .2s;
  backdrop-filter: blur(2px);
}
.kawaii-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(48, 32, 20, 0.09);
}
.kawaii-card h2,
.kawaii-card h3 {
  color: #2a201b;
  margin: 0 0 14px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: right;
  color: #8b5a2b;
  font: 700 15px "Fredoka", sans-serif;
  padding: 5px 0 10px;
}
.price-table th:first-child,
.price-table td:first-child { text-align: left; }
.price-table tr { border-top: 2px dashed #e2c9aa; }
.price-table tbody td { padding: 13px 0; font-weight: 700; }
.price-table td:not(:first-child) {
  text-align: right;
  color: #2a201b;
  font: 700 20px "Fredoka", sans-serif;
}
.price-table small {
  font: 700 11px "Nunito", sans-serif;
  color: #8b5a2b;
}
.price-table em {
  font: 700 12px "Nunito", sans-serif;
  font-style: normal;
  background: #f3e0c8;
  color: #2a201b;
  border-radius: 99px;
  padding: 3px 9px;
  margin-left: 6px;
}
.price-note {
  background: #f7ead7;
  color: #6f4420;
  border: 1.5px dashed #2a201b;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  margin: 10px 0 0;
}
.center { text-align: center; margin-top: 26px; }
.roomy { margin-top: 46px; }

.studio-showcase { padding-top: 5px; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.showcase-item {
  aspect-ratio: 1;
  border: 2.5px solid #2a201b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 0 #d8b48d;
  background: #fff;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner {
  max-width: 1012px;
  margin: 0 auto 66px;
  padding: 36px 28px;
  text-align: center;
  background: #1f1714;
  border-radius: 28px;
  border: 3px solid #2a201b;
  box-shadow: 0 10px 0 #b88455, 0 18px 36px rgba(48, 32, 20, 0.12);
}
.promo-banner h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}
.promo-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
.promo-banner .btn-secondary {
  margin-top: 8px;
}

.page-hero {
  position: relative;
  padding: 58px 24px 42px;
  background: transparent;
  overflow: hidden;
  border-bottom: 2px dashed #2a201b;
}
.page-hero::before,
.page-hero::after {
  display: none;
}
.page-cow {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2a201b;
  box-shadow: 0 5px 0 #d8b48d;
  margin: 0 auto;
  background: #fff;
}
.hero-emoji {
  position: relative;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: -22px auto 8px;
  transform: translateX(34px);
  border-radius: 50%;
  background: #fff8ef;
  border: 2px solid #2a201b;
  font-size: 18px;
  line-height: 0;
  overflow: hidden;
}
.hero-emoji .px-icon {
  margin: 0;
}
.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(36px, 6vw, 54px);
  color: #2a201b;
  margin: 8px 0;
}
.page-hero p {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: auto;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.pricing-card { margin-bottom: 28px; }
.pricing-card-divider {
  display: block;
  width: 100%;
  height: 32px;
  margin: -18px 0 10px;
  line-height: 0;
  text-align: center !important;
}
.pricing-card-divider--intro {
  height: 54px;
  margin: -10px 0 18px;
}
.pricing-card-divider .px-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin: 0;
}
.pricing-card h2 { font-size: 24px; }
.info-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-grid h3,
.included-grid h3 {
  font-size: 17px;
  color: var(--text);
  margin-top: 5px;
}
.info-grid p,
.included-grid p {
  margin: 0;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 330px;
}
.service-card h2 {
  font-size: 24px;
  margin-top: 12px;
}
.service-card p {
  color: var(--muted);
  margin: 0 0 20px;
}
.service-card .btn { margin-top: auto; }
.included-grid article {
  text-align: center;
  min-height: 230px;
}
.first-visit,
.share-card {
  max-width: 520px;
  margin: 54px auto 0;
  text-align: center;
}
.first-visit > span,
.share-card > span { font-size: 32px; }

.gallery-section { margin-bottom: 52px; }
.gallery-section h2 {
  color: #2a201b;
  font-size: 26px;
}
.gallery-section h2 small {
  font: 700 12px "Nunito", sans-serif;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  padding: 0;
  aspect-ratio: 1;
  border: 2.5px solid #2a201b;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 0 #d8b48d;
  transition: .2s;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(30, 18, 18, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox figure {
  margin: 0;
  max-width: min(900px, 86vw);
  max-height: 86vh;
  text-align: center;
  color: #fff;
}
.lightbox img {
  max-height: 78vh;
  margin: auto;
  border-radius: 8px;
}
.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
}
.lb-close { right: 24px; top: 20px; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.appointments-page { padding-bottom: 76px; }
.appointment-card > h2 { font-size: 25px; }
.track-banner {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: #1f1714;
  color: #fff;
  border-radius: 16px;
  border: 2px solid #2a201b;
  box-shadow: 0 6px 0 #b88455;
}
.track-banner > span { display: flex; flex-direction: column; }
.track-banner strong { font-size: 19px; }
.track-banner small {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 24px 0 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2c9aa;
}
.service-options article {
  background: #fff;
  border: 2.5px dashed #2a201b;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 0 #e8d2b5;
  display: flex;
  flex-direction: column;
}
.service-options h3 {
  color: var(--text);
  font-size: 22px;
  text-transform: lowercase;
}
.service-options p {
  color: #8b5a2b;
  font-size: 13px;
  font-style: italic;
}
.service-options article > div {
  display: flex;
  justify-content: space-between;
}
.service-options .btn {
  margin-top: auto;
  width: 100%;
}
.account-tabs {
  background: #fff;
  border: 2.5px solid #2a201b;
  border-radius: 18px;
  overflow: hidden;
}
.tab-buttons { display: grid; grid-template-columns: 1fr 1fr; }
.tab-buttons button {
  border: 0;
  border-bottom: 1px solid #e8d2b5;
  background: #f7ead7;
  padding: 13px;
  font-weight: 800;
  color: var(--text);
}
.tab-buttons button.active {
  color: #2a201b;
  background: #fff;
  border-bottom: 3px solid #2a201b;
}
.account-form { display: none; padding: 25px; }
.account-form.active { display: block; }
.account-form h3 {
  color: var(--text);
  font-size: 22px;
}
.account-form label {
  display: block;
  margin: 13px 0;
  font-weight: 700;
}
.account-form input {
  width: 100%;
  border: 1.5px solid #d8b48d;
  border-radius: 10px;
  padding: 10px;
  margin-top: 6px;
  font-size: 16px;
  background: #fffaf4;
}
.account-form .check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-form .check input {
  width: auto;
  margin: 0;
}
.account-submit {
  width: 100%;
  border: 2.5px solid #2a201b;
  border-radius: 999px;
  background: #1f1714;
  color: #fff;
  font-weight: 800;
  padding: 12px;
  box-shadow: 0 4px 0 #b88455;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2c9aa;
  padding-top: 26px;
}
.account-header h3,
.account-header p { margin: 0; }
.booking-list article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #f0e0cb;
}
.booking-list article div { display: flex; flex-direction: column; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.location-grid .kawaii-card { padding: 25px; }
.location-grid h2 { font-size: 23px; }
.location-grid a {
  display: block;
  margin: 10px 0;
  font-weight: 800;
}
.studio-address {
  line-height: 1.55;
  margin: 8px 0 12px;
  white-space: normal;
}
.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
}
.hours strong { color: #2a201b; font-variant-numeric: tabular-nums; }
.pink { color: #2a201b; }
.discount-card {
  grid-column: 1 / 2;
  border-color: #2a201b;
  background: #f7ead7;
}
.notice {
  background: #f7ead7;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px dashed #2a201b;
}
.status {
  display: inline-flex;
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}
.status-pending { background: #f3e0c8; color: #6f4420; }
.status-confirmed { background: #e8efe4; color: #3d5a34; }
.status-completed { background: #ebe7e2; color: #2a201b; }
.status-cancelled { background: #f0e6e2; color: #7a4a42; }
.empty-state {
  padding: 20px;
  background: #f7ead7;
  border-radius: 12px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #1f1714;
  border-top: 4px solid #d8b48d;
  padding: 50px 32px 23px;
  color: #fff;
}
.footer-grid {
  max-width: 960px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-grid section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid h3 {
  margin: 0 0 12px;
  color: #f0d3ae;
}
.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0;
}
.footer-address {
  line-height: 1.55;
  white-space: normal;
  max-width: 18em;
}
.footer-bottom {
  max-width: 960px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 2px dashed rgba(255, 255, 255, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-bottom small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Modal */
.modal,
.success-dialog {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(40, 25, 25, 0.72);
  padding: 24px;
  overflow: auto;
}
.modal.open,
.success-dialog.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.modal-panel {
  position: relative;
  width: min(720px, 100%);
  margin: auto;
  background: #fffaf4;
  border-radius: 24px;
  border: 3px solid #2a201b;
  padding: 32px;
  box-shadow: 0 10px 0 #d8b48d, 0 24px 70px rgba(0, 0, 0, 0.28);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 32px;
  color: #8a7464;
}
.modal-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.modal-cow {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2a201b;
}
.modal-heading h2 {
  color: #2a201b;
  margin: 0;
}
.modal-heading p {
  margin: 2px 0 20px;
  color: var(--muted);
}
.contact-panel {
  width: min(520px, 100%);
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-item {
  display: block;
  background: #fff;
  border: 2px solid #2a201b;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 3px 0 #d8b48d;
  color: #2a201b;
  text-decoration: none;
}
a.contact-item:hover {
  background: #fff8ef;
  transform: translateY(-1px);
}
.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a7464;
  margin-bottom: 4px;
}
.contact-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  word-break: break-word;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; }
.field.full,
.form-divider.full,
.form-actions.full,
.form-message.full { grid-column: 1 / -1; }
.field label {
  font-weight: 800;
  margin-bottom: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid #d8b48d;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
}
.field input:disabled,
.field select:disabled {
  background: #f1ebe3;
  color: #6f6258;
}
.field small {
  color: var(--muted);
  margin-top: 6px;
}
.field-hint {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: #2f6fed;
}
.field-hint.recommended {
  color: #2f6fed;
}
.field-tip {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #edf4ff;
  border: 1px solid #c7dbff;
  color: #2b4f8a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.field-tip::before {
  content: "ℹ ";
  font-weight: 900;
}
.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f3e0c8;
  padding: 4px;
  border-radius: 14px;
  border: 1.5px solid #2a201b;
}
.segmented label { margin: 0; }
.segmented input {
  position: absolute;
  opacity: 0;
  width: 1px;
}
.segmented span {
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 9px;
  font-weight: 700;
}
.segmented input:checked + span {
  background: #1f1714;
  color: #fff;
  box-shadow: 0 2px 7px rgba(42, 28, 18, 0.12);
}
.form-divider {
  border-bottom: 1px solid #e8d2b5;
  height: 18px;
  margin: 4px 0 8px;
}
.form-divider span {
  position: relative;
  top: 6px;
  background: #fffaf4;
  padding-right: 10px;
  font: 700 15px "Fredoka", sans-serif;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}
.form-message {
  margin: 0;
  color: #8a3b32;
  font-weight: 800;
}
.booking-form.is-allday #duration-field {
  opacity: 0.55;
}
.booking-form.is-allday #duration {
  pointer-events: none;
}
.success-dialog { align-items: center !important; }
.success-dialog > div {
  width: min(460px, 100%);
  background: #fffaf4;
  border-radius: 24px;
  border: 3px solid #2a201b;
  padding: 36px;
  text-align: center;
  box-shadow: 0 10px 0 #d8b48d;
}
.success-dialog > div > span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #f3e0c8;
  color: #2a201b;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 800;
}
.success-dialog h2 { color: #2a201b; }

@keyframes bobble {
  50% { transform: translateY(-5px); }
}
@keyframes float {
  50% { transform: translateY(-9px); }
}

@media (max-width: 980px) {
  .main-nav a { padding: 9px 12px; font-size: 14px; }
  .site-logo strong { font-size: 18px; }
}

@media (max-width: 850px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid,
  .info-grid,
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .discount-card { grid-column: auto; }
}

@media (max-width: 680px) {
  .site-header { padding: 0 16px; }
  .site-logo strong { font-size: 17px; }
  .main-nav { margin-left: 0; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: rgba(255, 250, 244, 0.98);
    border-bottom: 2px dashed #2a201b;
    padding: 12px 16px;
    flex-direction: column;
  }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: center; }
  .home-hero { padding: 42px 18px 58px; }
  .hero-logo-badge { width: 112px; height: 112px; }
  .hero-cow { width: 100px; height: 100px; }
  .home-hero h1,
  .hero-title { font-size: 44px; }
  .page-hero { padding: 42px 18px 28px; }
  .feature-strip,
  .two-col,
  .service-grid,
  .info-grid,
  .included-grid,
  .service-options,
  .location-grid,
  .booking-form,
  .form-grid { grid-template-columns: 1fr; }
  .feature-strip { padding-bottom: 20px; }
  .showcase-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-wrap { padding-left: 16px; padding-right: 16px; }
  .kawaii-card { padding: 22px 18px; }
  .included-grid article,
  .service-card { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .modal { padding: 10px; }
  .modal-panel { padding: 26px 18px; }
  .field.full,
  .form-divider.full,
  .form-actions.full,
  .form-message.full,
  .form-grid .full { grid-column: auto; }
  .segmented { grid-template-columns: 1fr; }
  .form-actions { justify-content: stretch; }
  .form-actions .btn { flex: 1; }
  .account-header {
    align-items: flex-start;
    gap: 15px;
  }
  .lightbox { padding: 18px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { right: 8px; top: 8px; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .showcase-grid,
  .gallery-grid { gap: 9px; }
  .price-table td:not(:first-child) { font-size: 17px; }
  .price-table em {
    display: inline-block;
    margin: 3px 0 0;
  }
  .home-hero h1,
  .hero-title { font-size: 38px; }
  .site-logo small { display: none; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: min(100%, 240px); }
}
