/* ===========================
   Mochi & Co. Pet Salon
   =========================== */

:root {
  --bg: #fdf8f2;
  --bg-warm: #f7ecdb;
  --bg-blue: #e6f3f8;
  --coral: #ee7f5b;
  --coral-soft: #fbe2d7;
  --blue: #5fb3c7;
  --blue-soft: #d4ecf2;
  --brown: #8b6f47;
  --brown-soft: #ede0cb;
  --text: #4a3520;
  --text-mid: #7a6450;
  --text-soft: #a89580;
  --border: rgba(74, 53, 32, 0.1);
  --serif: 'Fraunces', 'Noto Serif TC', serif;
  --sans: 'Nunito', 'Noto Sans TC', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--coral);
}
.logo div { line-height: 1.2; }
.logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo small {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a {
  color: var(--text-mid);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--text);
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 120px;
  background: var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-title .hl {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-style: italic;
}
.hero-title .underline {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  color: var(--coral);
  opacity: 0.6;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 36px;
  align-items: center;
}
.t-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.t-item sup {
  font-size: 16px;
  color: var(--coral);
  margin-left: 2px;
}
.t-item span {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 600px;
}
.blob {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 110%;
  height: 110%;
  background: var(--coral-soft);
  border-radius: 50% 60% 70% 40% / 60% 40% 60% 50%;
  animation: blobMove 20s ease-in-out infinite;
}
@keyframes blobMove {
  0%, 100% { border-radius: 50% 60% 70% 40% / 60% 40% 60% 50%; }
  33% { border-radius: 60% 40% 50% 70% / 50% 60% 40% 60%; }
  66% { border-radius: 40% 70% 60% 50% / 70% 50% 60% 40%; }
}
.hero-img {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 40% 60% / 50% 50% 60% 40%;
  overflow: hidden;
  z-index: 2;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 100px;
  box-shadow: 0 20px 50px rgba(74, 53, 32, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.floating-card svg {
  color: var(--coral);
  background: var(--coral-soft);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.floating-card strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}
.floating-card small {
  font-size: 11px;
  color: var(--text-soft);
}
.card-1 {
  top: 10%;
  left: -10%;
  animation: float 6s ease-in-out infinite;
}
.card-2 {
  bottom: 12%;
  right: -8%;
  animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn.full { width: 100%; justify-content: center; }
.btn-coral {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
}
.btn-coral:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(238, 127, 91, 0.3);
}
.btn-line {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-line:hover {
  background: var(--text);
  color: #fff;
}

/* ============ FEATURES ============ */
.features {
  padding: 60px 0 120px;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feat-item {
  background: #fff;
  padding: 36px 28px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(74, 53, 32, 0.05);
  transition: transform 0.4s var(--ease);
}
.feat-item:hover { transform: translateY(-8px); }
.feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon.coral { background: var(--coral-soft); color: var(--coral); }
.feat-icon.blue { background: var(--blue-soft); color: var(--blue); }
.feat-icon.brown { background: var(--brown-soft); color: var(--brown); }
.feat-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feat-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============ SECTION HEAD ============ */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  color: var(--coral);
}
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  margin-top: 16px;
}
.section-head { margin-bottom: 64px; }
.section-head.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
  background: var(--bg-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.ai-main, .ai-sub {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}
.ai-main {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  box-shadow: 0 30px 60px rgba(74, 53, 32, 0.15);
}
.ai-sub {
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  border: 8px solid var(--bg-warm);
}
.ai-main img, .ai-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-floating {
  position: absolute;
  bottom: 20%;
  left: -10%;
  background: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(74, 53, 32, 0.15);
  z-index: 3;
  text-align: center;
}
.paw-emoji {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.ai-floating strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text);
  font-weight: 600;
}
.ai-floating small {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 600;
}
.about-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 24px;
}
.about-sign {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-sign img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.about-sign strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}
.about-sign small {
  font-size: 12px;
  color: var(--text-soft);
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.srv-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(74, 53, 32, 0.06);
  transition: all 0.5s var(--ease);
}
.srv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(74, 53, 32, 0.12);
}
.srv-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.srv-card:hover .srv-img img { transform: scale(1.08); }
.srv-body { padding: 32px 28px; }
.srv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.srv-tag.coral { background: var(--coral-soft); color: var(--coral); }
.srv-tag.blue { background: var(--blue-soft); color: var(--blue); }
.srv-tag.brown { background: var(--brown-soft); color: var(--brown); }
.srv-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.srv-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.srv-feat {
  list-style: none;
}
.srv-feat li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  padding: 8px 0;
}
.srv-feat svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* ============ PRICING ============ */
.pricing {
  padding: 120px 0;
  background: var(--bg-warm);
}
.price-table {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(74, 53, 32, 0.08);
}
.price-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  background: var(--text);
  color: #fff;
  padding: 24px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg); }
.size {
  display: flex;
  align-items: center;
  gap: 14px;
}
.size .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.size .dot.coral { background: var(--coral); }
.size .dot.blue { background: var(--blue); }
.size .dot.brown { background: var(--brown); }
.size strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
}
.size small {
  font-size: 12px;
  color: var(--text-soft);
}
.price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--coral);
  font-weight: 600;
}
.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 24px;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 120px 0;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.g {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.g:hover img { transform: scale(1.1); }
.g::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(238, 127, 91, 0);
  transition: background 0.4s;
}
.g:hover::after { background: rgba(238, 127, 91, 0.15); }

/* ============ REVIEWS ============ */
.reviews {
  padding: 120px 0;
  background: var(--bg-warm);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 10px 40px rgba(74, 53, 32, 0.06);
  transition: all 0.5s var(--ease);
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(74, 53, 32, 0.12);
}
.review-pet {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.review-pet-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--coral-soft);
  flex-shrink: 0;
}
.review-pet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-pet strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.review-pet small {
  font-size: 12px;
  color: var(--text-soft);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: #f5b942;
}
.review-card blockquote {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.review-service {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.review-service.coral { background: var(--coral-soft); color: var(--coral); }
.review-service.blue { background: var(--blue-soft); color: var(--blue); }
.review-service.brown { background: var(--brown-soft); color: var(--brown); }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-author strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.review-author small {
  font-size: 11px;
  color: var(--text-soft);
}

/* ============ BOOKING ============ */
.booking {
  padding: 120px 0;
  background: var(--bg);
}
.booking-card {
  background: linear-gradient(135deg, var(--coral) 0%, #d96a48 100%);
  border-radius: 32px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.booking-card .section-eyebrow { color: rgba(255,255,255,0.85); }
.booking-card .section-title { color: #fff; }
.booking-card .section-title em { color: var(--bg-warm); }
.booking-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 40px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.info-row svg {
  color: var(--bg-warm);
  flex-shrink: 0;
}

.booking-form {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.booking-form h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field label {
  display: block;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--bg);
  color: var(--text);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 12px;
  transition: all 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
}
.form-field textarea { resize: vertical; }

/* ============ FOOTER ============ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer .logo { color: var(--coral); }
.footer .logo strong { color: #fff; }
.footer .logo small { color: rgba(255,255,255,0.6); }
.footer-copy {
  font-size: 13px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--coral);
  border-color: var(--coral);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MOBILE NAV / HAMBURGER ============ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  z-index: 1001;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  overflow-y: auto;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu-inner {
  min-height: 100%;
  padding: 110px 32px 60px;
  display: flex;
  flex-direction: column;
}
.mobile-nav { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  transition: padding 0.3s var(--ease), color 0.3s;
}
.mobile-nav a span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral);
}
.mobile-nav a:hover { padding-left: 12px; color: var(--coral); }
.mobile-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(238, 127, 91, 0.3);
}
.mobile-foot {
  margin-top: auto;
  padding-top: 60px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  line-height: 1.9;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-title { font-size: clamp(48px, 8vw, 80px); }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 480px; max-width: 480px; margin: 0 auto; width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 480px; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-card { grid-template-columns: 1fr; padding: 60px 40px; gap: 60px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav { padding: 14px 0; }
  .container { padding: 0 24px; }
  .logo strong { font-size: 18px; }
  .logo small { font-size: 10px; }

  .hero { padding: 30px 0 70px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-title { font-size: clamp(38px, 10vw, 56px); line-height: 1.1; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .hero-actions .btn { padding: 14px 24px; font-size: 13px; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .hero-visual { height: 380px; max-width: 380px; }

  .features, .about, .services, .pricing, .gallery, .reviews, .booking { padding: 80px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-eyebrow { font-size: 11px; }
  .section-title { font-size: clamp(32px, 8vw, 48px); }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 28px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .booking-card { padding: 40px 24px; }
  .booking-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .price-head, .price-row { grid-template-columns: 1.2fr 1fr; gap: 8px; padding: 16px 20px; font-size: 12px; }
  .price-head > div:nth-child(3), .price-head > div:nth-child(4),
  .price-row > div:nth-child(3), .price-row > div:nth-child(4) { display: none; }
  .price { font-size: 18px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 24px; padding: 40px 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(34px, 11vw, 44px); }
  .hero-visual { height: 320px; max-width: 320px; }
  .mobile-nav a { font-size: 24px; padding: 22px 0; }
  .mobile-menu-inner { padding: 100px 24px 50px; }
}
