* {
  box-sizing: border-box;
}

:root {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #f7f5f3;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f5f3;
}

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

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

button {
  font: inherit;
}

.container {
  width: calc(100% - 40px);
  max-width: 1800px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1024px) {
  .container {
    width: calc(100% - 32px);
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    max-width: 100vw;
  }

  .hero,
  .hero-slider,
  .hero-overlay {
    border-radius: 0;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-copy-text {
    max-width: 100%;
  }

  .hero-stats {
    width: 100%;
  }

  .section-header h2,
  .faq-section h2,
  .instagram-marquee-section h2 {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .testimonial-marquee-wrapper,
  .instagram-marquee {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-card {
    min-height: 220px;
  }
}

@media (max-width: 420px) {
  .button,
  .button-primary,
  .button-secondary {
    max-width: 100%;
    white-space: normal;
  }

  .reservation-popup {
    max-height: calc(100vh - 88px);
  }

  .reservation-success-card .button-primary {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}


.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.site-header .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 20px;
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 0;
  position: relative;
}

.site-logo img {
  height: 78px;
  display: block;
}

.site-logo {
  position: absolute;
  left: 24px;
  margin: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  color: #111;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 12px;
}

.reservation-group {
  position: absolute;
  right: 24px;
}

.reservation-button {
  margin: 0;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.button-secondary.button-call,
.button-secondary.reservation-button {
  width: 210px;
}

.button-call {
  margin-left: 12px;
}

.reservation-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
  z-index: 220;
}

.reservation-popup.hidden {
  display: none;
}

.reservation-popup-content {
  padding: 20px;
}

.reservation-popup-text {
  margin: 0 0 12px;
  color: #5e5256;
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.hidden {
  display: none !important;
}

.hidden {
  display: none !important;
}

.reservation-wheel {
  margin-top: 20px;
  text-align: center;
}

.reservation-wheel-label {
  font-weight: 700;
  margin-bottom: 18px;
}

.wheel-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  margin: -14px auto 0;
}

.reservation-wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      transparent 0deg 59deg,
      rgba(255, 255, 255, 0.85) 59deg 60deg
    ),
    conic-gradient(
      #e10600 0deg 60deg,
      #1c265c 60deg 120deg,
      #1d3d9b 120deg 180deg,
      #12164f 180deg 240deg,
      #263bb1 240deg 300deg,
      #44197d 300deg 360deg
    );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 12px solid #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8), inset 0 8px 26px rgba(0, 0, 0, 0.18), 0 24px 65px rgba(0, 0, 0, 0.18);
  transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
}

.reservation-wheel-disc::before {
  content: '';
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.wheel-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --disc-rotation: 0deg;
}

.wheel-segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 54px;
  transform: translate(-50%, -50%) rotate(calc(var(--rotate) - 60deg)) translateX(118px);
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-segment span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 4px 6px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
  transform: rotate(calc(-1 * (var(--rotate) - 60deg + var(--disc-rotation))));
  transform-origin: center center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  white-space: pre-line;
  overflow-wrap: anywhere;
  transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.wheel-pointer {
  display: none;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 28px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 4;
}

.wheel-pointer::after {
  content: '';
  position: absolute;
  top: 28px;
  left: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d30000;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.wheel-center-button {
  position: absolute;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ff4545 0%, #d20000 55%, #a00000 100%);
  color: #fff;
  font-weight: 900;
  border: 8px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.wheel-center-button:hover {
  transform: translateY(-1px);
}

.wheel-result {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #faf7f4;
  color: #111;
  font-weight: 700;
}

.reservation-wheel.hidden,
.wheel-result.hidden {
  display: none;
}

.reservation-month {
  background: #faf7f4;
  border: 1px solid #e4d9d3;
  border-radius: 16px;
  min-height: 42px;
  padding: 10px 12px;
  font-weight: 700;
  text-transform: capitalize;
  color: #111;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reservation-month:hover,
.reservation-month.active {
  transform: translateY(-2px);
  border-color: #111;
  background: #fff;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 1.8rem;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #111;
  font-size: 1.25rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #fff;
}

.hero-slider {
  position: absolute;
  inset: 20px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-arrow:hover {
  opacity: 0.86;
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow-prev {
  left: 18px;
}

.slider-arrow-next {
  right: 18px;
}

.hero-overlay {
  position: absolute;
  inset: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.35), rgba(17, 17, 17, 0.12));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero-copy {
  padding: 60px 0 48px;
}

.hero-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-copy-text {
  max-width: 100%;
}

.hero-copy-text h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5.25rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #1b1320;
}

.animated-gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #d73d84, #f9c06c, #7f5c9d, #42b6ff, #f3f0ff, #d73d84);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rainbow-slide 4s linear infinite;
}

@keyframes rainbow-slide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-copy-text p {
  margin-top: 24px;
  color: #5c4f5a;
  line-height: 1.8;
  font-size: 1.08rem;
}

.colorful-word {
  font-weight: 800;
  background: linear-gradient(90deg, #d73d84, #f9c06c, #7f5c9d, #42b6ff, #f3f0ff, #d73d84);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rainbow-slide 4s linear infinite;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: #ae8c7f;
  font-size: 0.85rem;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-content p {
  margin: 24px 0 32px;
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  padding: 38px 30px 28px;
  border: 2px solid rgba(235, 195, 205, 0.9);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  overflow: visible;
  width: 100%;
}

.hero-stats::before {
  content: "❤";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #d73d84;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 1.15rem;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.16);
  z-index: 2;
}

.stat-card {
  background: #fff;
  color: #1f1721;
  border-radius: 28px;
  padding: 32px 28px;
  width: 260px;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
  border: 1px solid rgba(220, 205, 210, 0.85);
}

.stat-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8e9ed;
  color: #d73d84;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(215, 61, 132, 0.12), 0 10px 20px rgba(17, 17, 17, 0.06);
}

.stat-icon i {
  display: block;
}

.icon-instagram {
  background: #fff2f5;
  color: #d85674;
}

.icon-heart {
  background: #fff1f3;
  color: #dd2e6b;
}

.icon-camera {
  background: #f5f0fb;
  color: #7f5c9d;
}

.stat-card-heart .stat-icon {
  background: #fff1f3;
  color: #dd2e6b;
}

.stat-card-instagram .stat-icon {
  background: #fff2f5;
  color: #d85674;
}

.stat-card-camera .stat-icon {
  background: #f5f0fb;
  color: #7f5c9d;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.05;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(237, 220, 226, 0.95);
}

.stat-card strong::after {
  content: none;
}

.stat-card span {
  color: #5d505b;
  font-weight: 700;
  display: block;
  margin-top: 12px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8e9ed;
  color: #d73d84;
  font-size: 1.3rem;
  line-height: 1;
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8e9ed;
  color: #d73d84;
  font-size: 1.35rem;
}

.stat-card-heart .stat-icon {
  background: #fde5ee;
  color: #dd2e6b;
}

.stat-card-instagram .stat-icon {
  background: #fdf0f3;
  color: #d85674;
}

.stat-card-camera .stat-icon {
  background: #f7eff5;
  color: #9f5c9b;
}

.stat-card strong {
  font-size: 1.7rem;
  line-height: 1.05;
  margin: 0;
}

.stat-card span {
  color: #5d505b;
  font-weight: 700;
}

.stat-card p {
  margin: 0;
  color: #7c6c76;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-slider {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.service-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.service-slider img.active {
  opacity: 1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
}

.contact-card i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f8e9ed;
  color: #d85674;
}

.contact-card span {
  color: #8b7d86;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-card strong {
  color: #111;
  font-size: 1rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.contact-hero {
  padding: 70px 0 42px;
  background: #f8f4ef;
}

.contact-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #756a72;
  font-weight: 700;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: #b8adb4;
}

.contact-section {
  padding-top: 72px;
}

.contact-overview {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(210px, 0.9fr));
  gap: 18px;
}

.contact-tile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: center;
  min-width: 0;
  min-height: 128px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.contact-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  fill: #fff;
  padding: 12px;
}

.contact-tile span {
  color: #8b7d86;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  min-width: 0;
}

.contact-tile strong {
  color: #111;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 0;
}

.contact-tile-compact strong {
  font-size: clamp(0.7rem, 0.82vw, 0.82rem);
  white-space: nowrap;
}

.contact-phone-list {
  display: grid;
  gap: 3px;
}

.contact-phone-list a {
  color: #111;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 30px;
}

.contact-panel-media {
  min-height: 540px;
  border-radius: 12px;
  background-image: url('images/optimized/contact-photo-optimized.jpg');
  background-size: cover;
  background-position: center;
}

.contact-form-wide h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
}

.contact-topic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.contact-topic legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-weight: 800;
}

.contact-topic label,
.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5d505b;
  font-weight: 700;
}

.contact-topic input,
.kvkk-check input {
  width: auto;
  margin-top: 0.32em;
}

.kvkk-check {
  font-size: 0.9rem;
  line-height: 1.5;
}

.stat-card img {
  width: 38px;
  margin-bottom: 12px;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.95rem;
  color: #5f5f67;
}

.section {
  padding: 88px 0;
}

@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
}

.section-white {
  background: #fff;
}

.section-light {
  background: #f8f4ef;
}

.section-dark {
  background: #1a1220;
  color: #fff;
}

.section-header {
  max-width: 100%;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3vw, 3.25rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1f1623;
}

.section-header p {
  margin: 20px auto 0;
  max-width: 100%;
  color: #5d5461;
  font-size: 1rem;
  line-height: 1.8;
}

.section-header .subheading {
  margin: 0 0 18px;
  color: #a47f6a;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  font-weight: 700;
}

.white-title h2 {
  color: #fff;
}

.feature-grid,
.service-grid,
.testimonial-grid,
.faq-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.service-card,
.testimonial-card,
.faq-item,
.faq-panel {
  border-radius: 24px;
}

.feature-card {
  background: #fff;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  display: grid;
  gap: 16px;
  text-align: left;
}

.feature-card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.feature-card-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f9e8ef 0%, #f0d8e7 100%);
  border-radius: 999px;
  color: #9f5c9b;
  font-size: 1.35rem;
}

.feature-card-icon i {
  display: block;
}

.feature-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.feature-card h3 {
  margin: 0;
  min-width: 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.2;
  color: #221a20;
}

.feature-card p {
  margin: 0;
  color: #665c67;
  line-height: 1.75;
  font-size: 1rem;
}

.packages-section {
  position: relative;
  overflow: visible;
}

.packages-section .section-header {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  display: grid;
  justify-items: center;
  justify-content: center;
}

.packages-title {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
  background: linear-gradient(90deg, #e91e63, #ffb000, #7f5cff, #00a7ff, #25d366, #e91e63);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e91e63;
  animation: packages-title-flow 5s linear infinite;
  position: relative;
  z-index: 2;
}

@keyframes packages-title-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.packages-subtitle {
  display: inline-block;
  max-width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
  margin-top: 18px;
  text-align: center;
  background: linear-gradient(90deg, #b4001b, #ff1238, #ff5a70, #d00024, #ff1238);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e60028;
  font-weight: 900;
  text-shadow: none;
  animation: red-text-flow 4.5s linear infinite;
}

@keyframes red-text-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.package-card {
  min-height: 455px;
  display: grid;
  grid-template-rows: 132px 1fr;
  overflow: hidden;
  border: 1px solid rgba(226, 215, 205, 0.95);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.07);
}

.package-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  box-sizing: border-box;
}

.package-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px 16px;
}

.package-name {
  margin: 0;
  color: #2f2a27;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.package-service {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.package-service h3 {
  margin: 0;
  color: #050505;
  font-size: 0.98rem;
  line-height: 1.18;
  font-weight: 900;
}

.package-items {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #161616;
  font-size: 0.82rem;
  line-height: 1.25;
}

.package-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.package-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.preparation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(217, 164, 77, 0.08), transparent 32%),
    #fffaf5;
}

.preparation-header {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
  display: grid;
  justify-items: center;
}

.preparation-header::before {
  content: none;
  display: none;
}

.preparation-header h2 {
  font-family: inherit;
  font-size: clamp(2.15rem, 3vw, 3.25rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
  width: 100%;
  margin: -4px auto 0;
  padding-top: 4px;
  text-align: center;
}

.preparation-header p {
  width: 100%;
  max-width: 860px;
  margin: 16px auto 0;
  text-align: center;
  color: #363849;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.preparation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.preparation-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0;
  min-height: 330px;
  padding: 0 0 20px;
  border: 1px solid rgba(230, 223, 214, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(44, 34, 28, 0.12);
  text-align: center;
  overflow: hidden;
}

.preparation-visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.95 / 1;
  min-height: 138px;
  border-radius: 0;
  color: #fff;
  font-size: 2.6rem;
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.preparation-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.08));
}

.preparation-visual i {
  display: none;
}

.preparation-card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: -29px auto 10px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(227, 219, 209, 0.9);
  color: #db9a34;
  box-shadow: 0 8px 20px rgba(30, 22, 18, 0.12);
}

.preparation-card-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preparation-card:nth-child(3) .preparation-card-icon,
.preparation-card:nth-child(4) .preparation-card-icon {
  color: #e0a03b;
}

.preparation-visual-outfit {
}

.preparation-visual-makeup {
}

.preparation-visual-location {
}

.preparation-visual-light {
}

.preparation-card h3 {
  margin: 0 18px;
  color: #181313;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 1.15;
  font-weight: 500;
}

.preparation-card p {
  margin: 12px auto 0;
  max-width: 84%;
  color: #3f4050;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
}

.preparation-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.preparation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 58px;
  min-width: 300px;
  padding: 13px 58px;
  border-radius: 999px;
  border: 2px solid #f2e5d5;
  background: #050505;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.preparation-button i {
  display: inline-grid;
  place-items: center;
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  font-size: 1.75rem;
  line-height: 1;
}

.preparation-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  line-height: 1;
  width: 100%;
}

.preparation-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.2);
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #f5efe8;
  color: #111;
  border-radius: 24px;
  padding: 24px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card span,
.service-card h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.concept-grid span {
  background: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 600;
  color: #3b2b38;
  text-align: center;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

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

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #f5efe8;
  color: #111;
  border-radius: 24px;
  padding: 24px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.1);
}

.home-services-intro {
  max-width: 1240px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-services-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.home-services-intro p {
  margin: 0;
  color: #d71920;
  font-size: clamp(0.9rem, 1.2vw, 1.04rem);
  line-height: 1.6;
  font-weight: 850;
  text-wrap: balance;
  background: linear-gradient(90deg, #a90000, #ff1f2d, #d71920, #7f0000, #ff3744);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: redTextFlow 5.5s linear infinite;
}

.home-services-intro span {
  display: block;
}

@keyframes redTextFlow {
  to {
    background-position: 260% center;
  }
}

.contract-text {
  white-space: pre-line;
  color: #342f35;
  font-size: 1rem;
  line-height: 1.85;
}

.instagram-marquee-section {
  padding: 82px 0 92px;
  background: #fff;
  overflow: hidden;
}

.instagram-marquee-section .section-header {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin-bottom: 44px;
}

.instagram-marquee-section h2 {
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  font-size: 2.65rem;
  line-height: 1.18;
}

.instagram-marquee {
  display: grid;
  gap: 22px;
  width: 100%;
  overflow: hidden;
}

.instagram-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  margin: 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
  animation: instagram-marquee var(--instagram-marquee-duration, 42s) linear infinite;
  will-change: transform;
}

.instagram-marquee-track-reverse {
  animation-name: instagram-marquee-reverse;
  animation-duration: var(--instagram-marquee-duration-reverse, 48s);
}

.instagram-marquee:hover .instagram-marquee-track {
  animation-play-state: paused;
}

.instagram-follow-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  padding-inline: 20px;
}

.instagram-follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #fa7e1e, #d62976 50%, #962fbf);
  box-shadow: 0 16px 34px rgba(214, 41, 118, 0.24);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-follow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(214, 41, 118, 0.3);
}

.testimonial-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}

.google-review-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  min-width: 44px;
  padding: 14px 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.google-review-button:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 133, 244, 0.32);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.15);
}

.google-review-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: conic-gradient(from -40deg, #4285f4 0 28%, #34a853 28% 47%, #fbbc05 47% 72%, #ea4335 72% 100%);
  color: #fff;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.testimonial-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testimonial-marquee var(--marquee-duration, 64s) linear infinite;
  animation-delay: var(--marquee-delay, 0s);
  will-change: transform;
}

.testimonial-marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 clamp(230px, 24vw, 280px);
  min-width: 230px;
}

.gallery-item {
  flex: 0 0 clamp(120px, 13vw, 180px);
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #f0ebe7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

@keyframes instagram-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@keyframes instagram-marquee-reverse {
  from {
    transform: translateX(calc(-50% - 11px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes testimonial-marquee {
  from {
    transform: translateX(calc(-50% - 16px));
  }
  to {
    transform: translateX(0);
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-section {
  padding: 90px 0;
}

.testimonial-section .section-header {
  width: min(1320px, calc(100% - 40px));
  max-width: none;
  margin-bottom: 48px;
}

.testimonial-section h2 {
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: normal;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
}

.testimonial-section .testimonial-kicker {
  margin-bottom: 14px;
}

.testimonial-section .section-header h2:not(.testimonial-kicker) {
  white-space: nowrap;
  font-size: clamp(1.25rem, 2vw, 2.35rem);
  line-height: 1.18;
  max-width: 100%;
}

.faq-section .section-header {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  text-align: center;
}

.faq-section h2 {
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  position: relative;
  display: block;
  min-height: 240px;
  text-align: left;
  padding-bottom: 58px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card-link {
  color: inherit;
  text-decoration: none;
}

.testimonial-card-link:hover {
  transform: translateY(-2px);
}

.testimonial-stars {
  margin: 0 0 12px;
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-card p {
  margin: 0;
  color: #4a4145;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.testimonial-card strong {
  display: block;
  font-size: 0.95rem;
  text-align: left;
}

.faq-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-item {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  background: #fff;
  color: #111;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.06);
}

.faq-item span {
  min-width: 0;
}

.faq-arrow {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid #ba9d7f;
  border-bottom: 2px solid #ba9d7f;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item + .faq-panel {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.faq-item.active {
  color: #ba9d7f;
}

.faq-item.active .faq-arrow {
  transform: rotate(225deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #fff;
  transition: max-height 0.25s ease;
}

.faq-panel {
  color: #5a5053;
  font-size: 0.95rem;
  line-height: 1.75;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.06);
}

.footer {
  padding: 40px 0 24px;
  background: #111;
  color: #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 28px;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #fff;
}

.footer-grid a {
  display: block;
  color: #ddd;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 0.95rem;
}

.whatsapp-button,
.instagram-button,
.call-button {
  position: fixed;
  bottom: 22px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  gap: 10px;
  color: #fff;
  padding: 0;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.9rem;
}

.whatsapp-button {
  right: 22px;
  background: #25d366;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
}

.instagram-button {
  right: 92px;
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 28%, #d62976 54%, #962fbf 76%, #4f5bd5 100%);
  box-shadow: 0 16px 40px rgba(214, 41, 118, 0.35);
}

.call-button {
  right: 162px;
  background: #2f9bff;
  box-shadow: 0 16px 40px rgba(47, 155, 255, 0.32);
}

.whatsapp-button svg,
.instagram-button svg,
.call-button svg {
  width: 32px;
  height: 32px;
  display: block;
}

.nav-open {
  position: absolute;
  top: 88px;
  right: 20px;
  left: 20px;
  display: grid;
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
  border-radius: 24px;
  grid-template-columns: 1fr;
  gap: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 200;
}

.modal-overlay.hidden {
  display: none;
}

.modal-dialog {
  width: min(580px, 100%);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.modal-content {
  padding: 34px 32px;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 1.8rem;
  cursor: pointer;
}

.reservation-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.reservation-form-section {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding-right: 4px;
}

.reservation-form-section .reservation-form {
  gap: 10px;
  margin-top: 10px;
}

.reservation-form label {
  font-weight: 600;
}

.reservation-form-section .reservation-form label {
  font-size: 0.88rem;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 18px;
  font: inherit;
}

.reservation-form-section .reservation-form input,
.reservation-form-section .reservation-form textarea {
  min-height: 38px;
  padding: 9px 12px;
}

.reservation-form-section .reservation-form textarea {
  min-height: 68px;
}

.kvkk-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.kvkk-check input {
  width: auto;
  margin: 0;
}

.reservation-form-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 2px;
}

.reservation-form-actions .button-secondary,
.reservation-form-actions .button-primary {
  flex: 1 1 120px;
}

.button-primary {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
}

.reservation-feedback {
  margin-top: 12px;
  color: #0f7d49;
  font-weight: 700;
}

.reservation-success-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #b8e1c7;
  border-radius: 18px;
  background: #edf9f1;
  color: #143f29;
}

.reservation-success-card strong {
  font-size: 1rem;
}

.reservation-success-card span {
  font-size: 0.9rem;
  line-height: 1.45;
}

.reservation-success-card .button-primary {
  justify-self: start;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 0.9rem;
}

.selected-reward-note {
  margin: 10px 0 8px;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff1c7, #ffe1ea);
  color: #2a1616;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 14px 34px rgba(180, 92, 36, 0.16);
}

.reservation-feedback.hidden {
  display: none;
}

.about-intro {
  padding: 74px 0 76px;
  overflow: hidden;
}

.about-intro-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 1fr);
  gap: 44px;
  align-items: center;
}

.about-intro h1,
.about-story-grid h2,
.about-section-heading h2 {
  margin: 0;
  color: #1f1623;
  font-size: clamp(3rem, 5.4vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-intro h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.85rem);
}

.about-intro h1.about-dream-title {
  display: block !important;
  max-width: 700px;
  margin-bottom: 42px !important;
  font-size: clamp(1.9rem, 3.1vw, 3.25rem) !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
}

.about-intro h1.about-dream-title span {
  display: block;
}

.services-intro-title {
  font-size: clamp(1.55rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.services-intro-title span {
  display: block;
  white-space: nowrap;
}

.about-title-nowrap {
  white-space: nowrap;
}

.about-intro-copy {
  display: grid;
  gap: 18px;
  margin-top: 0;
  color: #5d5461;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: justify;
}

.about-intro-copy p,
.about-story-grid p {
  margin: 0;
}

.about-intro-gallery {
  min-height: 560px;
  overflow: hidden;
  display: grid;
  align-content: center;
  border-radius: 0;
  margin-right: calc((100vw - min(1140px, calc(100vw - 40px))) / -2);
}

.services-intro-gallery {
  margin-right: 0;
  margin-left: calc((100vw - min(1140px, calc(100vw - 40px))) / -2);
}

.about-vertical-gallery {
  height: 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 190px));
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.about-vertical-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: about-vertical-marquee var(--about-marquee-duration, 420s) linear infinite;
  will-change: transform;
}

.about-vertical-track-reverse {
  animation-name: about-vertical-marquee-reverse;
  animation-duration: var(--about-marquee-duration-reverse, 480s);
}

.about-vertical-gallery:hover .about-vertical-track {
  animation-play-state: paused;
}

.about-vertical-item {
  flex: 0 0 158px;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
}

@keyframes about-vertical-marquee {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 8px));
  }
}

@keyframes about-vertical-marquee-reverse {
  from {
    transform: translateY(calc(-50% - 8px));
  }
  to {
    transform: translateY(0);
  }
}

.about-marquee-section {
  padding-top: 32px;
}

.about-story-section {
  padding-top: 92px;
}

.about-story-grid p {
  color: #5d5461;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-details-section {
  background: #f8f4ef;
}

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

.about-section-heading-centered {
  max-width: none;
  text-align: center;
  margin-bottom: 56px;
}

.about-section-heading .about-details-title {
  white-space: nowrap;
  font-size: clamp(1.45rem, 4.2vw, 3.9rem);
  line-height: 1.12;
}

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

.about-detail-card {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(17, 17, 17, 0.07);
  text-align: center;
  min-width: 0;
}

.about-detail-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #d73d84, #f9c06c, #42b6ff);
  color: #fff;
  font-size: 1.25rem;
  justify-self: center;
  box-shadow: 0 14px 32px rgba(215, 61, 132, 0.22);
}

.about-detail-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.about-detail-card h3 {
  margin: 0;
  color: #221a20;
  font-size: clamp(0.88rem, 0.95vw, 1.02rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.about-quote-section {
  padding: 80px 0;
  background: #fff;
}

.about-quote-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px 0;
}

.about-quote-panel p {
  max-width: 920px;
  margin: 0;
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.about-original-grid {
  margin-bottom: 42px;
}

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

.about-project-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(17, 17, 17, 0.08);
}

.about-project-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-project-card h3,
.about-project-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.about-project-card h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #1f1623;
  font-size: 1.25rem;
}

.about-project-card p {
  margin-top: 0;
  margin-bottom: 26px;
  color: #665c67;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .feature-grid,
  .service-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 624px;
    padding-top: 120px;
  }

  .hero-slider {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-overlay {
    inset: 12px;
    border-radius: 18px;
  }

  .service-slider {
    inset: auto;
  }

  .hero-copy-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .services-intro-grid,
  .about-story-grid,
  .about-detail-grid,
  .about-project-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-gallery {
    min-height: 420px;
    margin-right: 0;
  }

  .services-intro-gallery {
    margin-left: 0;
  }

  .about-vertical-gallery {
    height: 420px;
    grid-template-columns: repeat(2, minmax(110px, 160px));
  }

  .about-intro h1,
  .about-story-grid h2,
  .about-section-heading h2 {
    font-size: clamp(2.6rem, 10vw, 4.6rem);
  }

  .about-intro h1 {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }

  .about-intro h1.about-dream-title {
    max-width: 100%;
    font-size: clamp(1.7rem, 6.2vw, 2.45rem) !important;
    line-height: 1.26 !important;
    margin-bottom: 34px !important;
  }

  .about-intro h1.services-intro-title {
    font-size: clamp(1.35rem, 6.2vw, 2.75rem);
  }

  .about-section-heading .about-details-title {
    font-size: clamp(1.35rem, 6.6vw, 2.4rem);
  }

  .about-detail-card {
    min-height: 130px;
  }

  .about-detail-card h3 {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-grid,
  .service-grid,
  .testimonial-grid,
  .concept-grid,
  .contact-grid,
  .contact-overview,
  .contact-panel,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .instagram-marquee-section h2 {
    white-space: normal;
    font-size: 2.2rem;
  }

  .faq-section h2 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 3.75rem);
  }

  .hero-slider {
    inset: 8px;
    border-radius: 16px;
  }

  .hero-overlay {
    inset: 8px;
    border-radius: 16px;
  }

  .service-slider {
    inset: auto;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 2rem;
  }

  .slider-arrow-prev {
    left: 10px;
  }

  .slider-arrow-next {
    right: 10px;
  }

  .contact-tile {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    grid-row: auto;
  }

  .contact-panel-media {
    min-height: 300px;
  }

  .contact-topic {
    grid-template-columns: 1fr;
  }

  .about-intro {
    padding-top: 64px;
  }

  .about-intro-gallery {
    min-height: 330px;
  }

  .about-vertical-gallery {
    height: 330px;
    gap: 10px;
  }

  .about-vertical-track {
    gap: 10px;
  }

  .about-vertical-item {
    flex-basis: 128px;
  }

  .about-quote-panel {
    min-height: 220px;
    padding: 20px 0;
  }

  .instagram-marquee-section h2 {
    white-space: normal;
    font-size: 1.75rem;
  }

  .testimonial-section h2 {
    font-size: 1.35rem;
  }
}

/* Enhanced Mobile Responsiveness */

@media (max-width: 1024px) {
  .button-secondary {
    min-width: auto;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .button-secondary.button-call,
  .button-secondary.reservation-button {
    width: auto;
  }

  .button-call {
    margin-left: 8px;
  }

  .header-inner {
    gap: 12px;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .site-logo {
    position: static;
    left: auto;
    margin: 0;
  }

  .site-logo img {
    height: 68px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    order: 2;
    margin-top: 12px;
  }

  .site-nav a {
    font-size: 0.85rem;
    padding: 8px 10px;
    white-space: normal;
    text-align: center;
  }

  .reservation-group {
    position: static;
    right: auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    order: 3;
    margin-top: 12px;
  }

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

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

  .hero-copy-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 180px;
    min-height: auto;
    padding: 22px 18px;
  }

  .stat-card strong {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    gap: 8px;
    padding: 16px 0;
    justify-content: flex-start;
  }

  .site-logo {
    left: 16px;
    margin-right: auto;
  }

  .site-logo img {
    height: 60px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    padding: 12px 0;
    gap: 0;
    justify-content: flex-start;
    z-index: 99;
  }

  .site-nav.nav-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.03);
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: inline-flex !important;
    order: -1;
    margin-right: 8px;
  }

  .reservation-group {
    position: relative;
    right: auto;
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .button-secondary {
    min-width: auto;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .button-secondary.button-call {
    display: none;
  }

  .button-secondary.reservation-button {
    width: auto;
    padding: 8px 12px;
    min-width: auto;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .button-call {
    margin-left: 0;
  }

  .reservation-popup {
    width: min(380px, calc(100vw - 20px));
    top: calc(100% + 6px);
    right: -20px;
    border-radius: 24px;
  }

  .reservation-popup-content {
    padding: 20px;
  }

  .res-month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .reservation-month {
    min-height: 38px;
    padding: 9px 8px;
    font-size: 0.84rem;
  }

  .wheel-wrapper {
    width: 280px;
    height: 280px;
    margin: -10px auto 0;
  }

  .wheel-segment {
    width: 84px;
    height: 44px;
    transform: translate(-50%, -50%) rotate(calc(var(--rotate) - 60deg)) translateX(90px);
  }

  .wheel-segment span {
    font-size: 0.56rem;
    line-height: 1.05;
    padding: 3px 4px;
  }

  .reservation-form-section {
    overflow-y: auto;
    max-height: calc(100vh - 170px);
  }

  .hero {
    min-height: 500px;
    padding-top: 80px;
  }

  .hero-copy-text h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px 18px;
    border-radius: 28px;
  }

  .stat-card {
    width: 100%;
    min-height: 160px;
    padding: 20px 16px;
  }

  .stat-card strong {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

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

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

  .call-button,
  .instagram-button,
  .whatsapp-button {
    width: 50px;
    height: 50px;
    border-radius: 24px;
  }

  .reservation-month:hover,
  .reservation-month.active {
    transform: translateY(-1px);
  }

  .faq-grid {
    gap: 12px;
  }

  .faq-item {
    padding: 16px 14px;
    font-size: 0.95rem;
  }

  .faq-panel {
    padding: 16px 14px;
    font-size: 0.9rem;
  }

  .contact-overview {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-tile {
    min-height: 100px;
    padding: 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 16px;
  }

  .nav-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    padding: 16px 0;
    z-index: 99;
  }

  .nav-open a {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.03);
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 6px;
    padding: 12px 0;
  }

  .site-logo {
    left: 12px;
  }

  .site-logo img {
    height: 50px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .reservation-group {
    right: 12px;
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .button-secondary {
    min-width: auto;
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 999px;
  }

  .button-secondary.button-call {
    display: none;
  }

  .button-secondary.reservation-button {
    width: auto;
  }

  .button-call {
    margin-left: 0;
  }

  .reservation-popup {
    width: calc(100vw - 16px);
    right: -8px;
    top: calc(100% + 4px);
    border-radius: 20px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .reservation-popup-content {
    padding: 18px;
  }

  .res-month-grid {
    grid-template-columns: 2fr 2fr 2fr;
    gap: 6px;
  }

  .reservation-month {
    padding: 12px 8px;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .wheel-wrapper {
    width: 240px;
    height: 240px;
    margin: -8px auto 0;
  }

  .wheel-segment {
    width: 72px;
    height: 38px;
    transform: translate(-50%, -50%) rotate(calc(var(--rotate) - 60deg)) translateX(78px);
  }

  .wheel-segment span {
    font-size: 0.5rem;
    line-height: 1.02;
    padding: 2px 3px;
  }

  .wheel-center-button {
    width: 120px;
    height: 120px;
    border: 6px solid rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }

  .reservation-form-section {
    max-height: 55vh;
  }

  .reservation-form label {
    font-size: 0.9rem;
  }

  .reservation-form input {
    padding: 10px 12px;
    font-size: 16px;
  }

  .reservation-form textarea {
    min-height: 64px;
    padding: 10px 12px;
    font-size: 16px;
  }

  .reservation-form-actions {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }

  .reservation-form-actions button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 420px;
    padding-top: 60px;
  }

  .hero-slider {
    inset: 6px;
    border-radius: 14px;
  }

  .hero-overlay {
    inset: 6px;
    border-radius: 14px;
  }

  .hero-copy {
    padding: 40px 0 32px;
  }

  .hero-copy-grid {
    gap: 32px;
  }

  .hero-copy-text h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .hero-copy-text p {
    font-size: 0.95rem;
    margin-top: 16px;
  }

  .hero-stats {
    padding: 20px 16px 14px;
    border-radius: 24px;
    gap: 12px;
  }

  .hero-stats::before {
    top: -18px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 16px 14px;
    min-height: 140px;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .stat-card strong {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .stat-card span {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-card {
    padding: 18px;
    gap: 12px;
  }

  .feature-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .feature-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 100px;
    padding: 20px;
    font-size: 0.95rem;
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid span {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .call-button,
  .instagram-button,
  .whatsapp-button {
    width: 44px;
    height: 44px;
    border-radius: 20px;
    bottom: 12px;
    right: 12px;
  }

  .call-button {
    bottom: 12px;
  }

  .instagram-button {
    bottom: 68px;
  }

  .whatsapp-button {
    bottom: 124px;
  }

  .faq-grid {
    gap: 10px;
  }

  .faq-item {
    padding: 14px 12px;
    font-size: 0.9rem;
    border-radius: 16px;
  }

  .faq-panel {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  .testimonial-card {
    padding: 16px;
    min-height: 224px;
    padding-bottom: 52px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 144px;
  }

  .testimonial-author {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .modal-close {
    font-size: 1.6rem;
    right: 16px;
    top: 16px;
  }

  .footer {
    padding: 40px 0 30px;
  }

  /* Better touch target sizes */
  button,
  a {
    min-height: 44px;
    min-width: 44px;
  }

  /* Prevent zoom on input focus */
  input,
  textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .site-logo {
    position: static;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .site-logo img {
    height: 52px;
  }

  .site-nav {
    position: static;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    gap: 8px;
    background: transparent;
    border: none;
  }

  .site-nav a {
    padding: 10px 12px;
    font-size: 0.87rem;
    text-align: center;
  }

  .reservation-group {
    position: static;
    right: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }

  .button-secondary {
    min-width: auto;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 420px;
  }

  .hero-copy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-stats {
    flex-direction: column;
    padding: 22px 18px 18px;
    gap: 16px;
  }

  .stat-card {
    width: 100%;
    min-height: auto;
    padding: 20px 16px;
  }

  .contact-grid,
  .contact-panel,
  .feature-grid,
  .about-project-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-panel {
    gap: 18px;
  }

  .reservation-popup {
    width: calc(100vw - 22px);
    left: 11px;
    right: 11px;
    top: calc(100% + 5px);
  }

  .reservation-popup-content {
    padding: 18px;
  }

  .res-month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .reservation-month {
    min-height: 36px;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .reservation-form-actions {
    flex-direction: column;
  }

  .reservation-form-actions button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding: 10px 0;
  }

  .site-logo img {
    height: 46px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .reservation-group {
    gap: 6px;
  }

  .hero-copy-text h1,
  .hero-copy-text p {
    text-align: center;
  }

  .hero-copy-text p {
    font-size: 0.98rem;
  }

  .feature-card,
  .service-card,
  .contact-card,
  .testimonial-card {
    padding: 18px;
  }
}

/* Responsive stability patch: prevent overlap on small/medium viewports */
@media (max-width: 1280px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
    padding: 14px 16px;
  }

  .site-logo {
    position: static;
    left: auto;
    margin: 0;
    order: 1;
  }

  .site-logo img {
    height: 64px;
  }

  .reservation-group {
    position: static;
    right: auto;
    order: 2;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .button-secondary {
    min-width: 170px;
    padding: 10px 14px;
  }

  .button-secondary.button-call,
  .button-secondary.reservation-button {
    width: auto;
    min-width: 170px;
  }

  .section-header h2,
  .instagram-marquee-section h2,
  .testimonial-section h2,
  .faq-section h2 {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .testimonial-section .section-header h2:not(.testimonial-kicker) {
    white-space: normal;
    font-size: clamp(1.15rem, 5vw, 1.75rem);
    overflow-wrap: normal;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px;
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex !important;
    order: 1;
  }

  .site-logo {
    order: 2;
  }

  .site-logo img {
    height: 52px;
  }

  .reservation-group {
    order: 3;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .button-secondary.button-call {
    display: none !important;
  }

  .button-secondary.reservation-button {
    min-width: auto;
    width: auto;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .site-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    backdrop-filter: blur(10px);
    z-index: 120;
    padding: 8px 0;
    gap: 0;
  }

  .site-nav.nav-open,
  .site-nav.nav-open.nav-open,
  .nav-open.site-nav {
    display: flex !important;
    flex-direction: column;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .reservation-popup {
    left: auto;
    right: 0;
    width: min(360px, calc(100vw - 16px));
  }
}

@media (max-width: 520px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 1;
  }

  .menu-toggle {
    order: 2;
  }

  .reservation-group {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .button-secondary.reservation-button {
    width: min(100%, 280px);
    text-align: center;
  }

  .about-intro h1.about-dream-title {
    font-size: clamp(1.45rem, 7.2vw, 2rem) !important;
    line-height: 1.28 !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 1180px) {
  .packages-title {
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-card {
    min-height: 0;
    grid-template-rows: 160px 1fr;
  }

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

  .preparation-visual {
    min-height: 165px;
  }
}

@media (max-width: 760px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card {
    min-height: 0;
  }

  .preparation-card {
    min-height: 0;
  }

  .preparation-header {
    margin-bottom: 32px;
  }

  .preparation-header h2 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .preparation-grid {
    grid-template-columns: 1fr;
  }

  .preparation-visual {
    min-height: 155px;
  }
}

@media (max-width: 520px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 0;
  }

  .preparation-grid {
    grid-template-columns: 1fr;
  }

  .preparation-card {
    grid-template-rows: auto auto auto 1fr;
  }

  .preparation-visual {
    min-height: 145px;
  }

  .preparation-card p {
    max-width: 86%;
  }
}

/* Responsive hardening: touch targets, readable text, and fluid media. */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
}

button,
.button,
.button-primary,
.button-secondary,
.site-nav a,
.package-action,
.reservation-month,
.modal-close,
.menu-toggle {
  min-height: 44px;
}

.site-nav a,
.package-action,
.reservation-month,
.modal-close,
.menu-toggle {
  min-width: 44px;
}

.button,
.button-primary,
.button-secondary,
.package-action {
  touch-action: manipulation;
}

.hero {
  min-height: clamp(500px, 62vw, 640px);
}

.hero-slider,
.hero-overlay {
  inset: clamp(8px, 1.4vw, 20px);
}

.package-card-image {
  aspect-ratio: 19 / 8;
}

@media (max-width: 768px) {
  .site-nav a {
    min-height: 48px;
    padding: 14px 18px;
  }

  .menu-toggle,
  .modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-right: 6px;
  }

  .button-secondary,
  .button-secondary.reservation-button,
  .button-primary,
  .reservation-form-actions .button-secondary,
  .reservation-form-actions .button-primary {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 1rem;
  }

  .reservation-month {
    min-height: 44px;
    font-size: 1rem;
  }

  .package-items,
  .feature-card p,
  .contact-form input,
  .contact-form textarea,
  .reservation-form input,
  .reservation-form textarea,
  .reservation-form select {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: clamp(460px, 120vw, 560px);
  }

  .reservation-popup {
    width: min(100vw - 16px, 420px);
    max-height: calc(100dvh - 88px);
  }

  .reservation-form-section {
    max-height: calc(100dvh - 190px);
  }

  .package-card {
    grid-template-rows: minmax(128px, auto) 1fr;
  }

  .package-action {
    width: min(100%, 220px);
    font-size: 1rem;
  }
}

/* Mobile polish layer: keeps the desktop design intact while making small screens read like a clean app. */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header .container,
  .container {
    width: min(100% - 24px, 560px);
    max-width: 560px;
    padding: 0;
  }

  .site-header .container {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .menu-toggle {
    order: initial;
    justify-self: start;
    margin: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #111;
    color: #fff;
  }

  .menu-toggle i {
    display: none;
  }

  .menu-toggle::before {
    content: "\2630";
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
  }

  .site-logo {
    position: static;
    order: initial;
    width: auto;
    justify-self: center;
  }

  .site-logo img {
    height: 52px;
    width: auto;
  }

  .reservation-group {
    position: static;
    order: initial;
    width: auto;
    margin: 0;
    justify-self: end;
    display: flex;
    justify-content: flex-end;
  }

  .button-secondary.reservation-button {
    width: auto;
    min-width: 0;
    max-width: 150px;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 0.76rem;
    line-height: 1.15;
    white-space: normal;
  }

  .site-nav {
    top: 100%;
    z-index: 140;
  }

  .site-nav a {
    text-align: center;
  }

  .reservation-popup {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100dvh - 92px);
    overflow: auto;
    z-index: 180;
  }

  .reservation-popup-content {
    padding: 16px;
  }

  .reservation-form-section {
    max-height: none;
    overflow: visible;
  }

  .section,
  .hero-copy,
  .packages-section,
  .preparation-section,
  .instagram-marquee-section,
  .testimonial-section,
  .faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2,
  .packages-title,
  .preparation-header h2,
  .instagram-marquee-section h2,
  .testimonial-section .section-header h2,
  .faq-section h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.18;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: normal;
    text-align: center;
  }

  .packages-section .section-header {
    overflow: hidden;
  }

  .packages-title {
    width: min(100%, 330px) !important;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.45rem, 6.2vw, 2rem) !important;
    line-height: 1.18;
  }

  .packages-subtitle {
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .section-header p,
  .packages-subtitle,
  .preparation-header p,
  .hero-copy-text p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
  }

  .hero-copy-text .animated-gradient-text,
  .section-header .animated-gradient-text {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero {
    min-height: 360px;
    padding: 0;
  }

  .hero-slider,
  .hero-overlay {
    inset: 8px;
    border-radius: 18px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-arrow-prev {
    left: 14px;
  }

  .slider-arrow-next {
    right: 14px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero-copy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy-text {
    max-width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .hero-copy-text h1 {
    width: min(100%, 340px);
    margin-inline: auto;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-copy-text p {
    width: min(100%, 310px) !important;
    max-width: 310px !important;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 16px 12px 12px;
    border-radius: 18px;
  }

  .hero-stats::before {
    position: static;
    grid-column: 1 / -1;
    transform: none;
    width: 100%;
    margin: 0 0 4px;
    padding: 8px 10px;
    font-size: 0.82rem;
    white-space: normal;
  }

  .stat-card {
    width: 100%;
    min-height: 108px;
    padding: 12px 8px;
    border-radius: 16px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-card strong {
    font-size: 0.95rem;
  }

  .stat-card span {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .feature-grid,
  .packages-grid,
  .preparation-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .feature-card,
  .package-card,
  .preparation-card,
  .testimonial-card {
    width: 100%;
    max-width: min(440px, calc(100vw - 24px));
    margin-inline: auto;
  }

  .feature-card {
    max-width: min(350px, calc(100vw - 28px));
  }

  .feature-card {
    padding: 18px;
    border-radius: 8px;
    overflow: hidden;
  }

  .feature-card p,
  .feature-card h3 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .feature-card p {
    width: min(100%, 300px);
  }

  .package-card {
    min-height: 0;
    grid-template-rows: auto 1fr;
  }

  .package-card-image {
    height: auto;
    max-height: 220px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .package-body {
    padding: 18px 14px 20px;
  }

  .package-name {
    font-size: 1.12rem;
  }

  .package-items {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .preparation-card {
    min-height: 0;
  }

  .preparation-visual {
    min-height: 160px;
    aspect-ratio: 16 / 9;
  }

  .preparation-button {
    width: min(100%, 310px);
    min-width: 0;
    padding-inline: 58px;
  }

  .instagram-marquee-section .section-header {
    width: min(100% - 24px, 560px);
    margin-bottom: 26px;
  }

  .instagram-marquee {
    gap: 14px;
  }

  .instagram-marquee-track {
    gap: 14px;
  }

  .gallery-item {
    flex-basis: 116px;
    border-radius: 14px;
  }

  .testimonial-marquee-wrapper {
    padding: 0;
  }

  .testimonial-card {
    flex-basis: min(82vw, 340px);
    min-width: min(82vw, 340px);
    min-height: 0;
    padding: 18px;
  }

  .testimonial-card p {
    min-height: 0;
    font-size: 0.95rem;
  }

  .google-review-button {
    width: min(100%, 320px);
    padding: 13px 18px;
  }

  .faq-item,
  .faq-panel {
    width: 100%;
    border-radius: 8px;
  }

  .footer .container > div > div {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .footer-bottom p {
    padding-inline: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 520px) {
  .site-header .container,
  .container {
    width: calc(100% - 20px);
    max-width: 100%;
  }

  .header-inner {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    row-gap: 8px;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    order: 0;
  }

  .site-logo {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    display: block;
    justify-self: center;
    padding: 0;
    order: 0;
  }

  .site-logo img {
    height: 48px;
  }

  .reservation-group {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    margin-top: 2px;
    order: 0;
  }

  .button-secondary.reservation-button {
    width: 100%;
    max-width: none;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 320px;
  }

  .hero-slider,
  .hero-overlay {
    inset: 6px;
    border-radius: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: auto;
    padding: 14px 12px;
  }

  .package-card-image {
    max-height: 190px;
  }

  .preparation-visual {
    min-height: 145px;
  }

  .gallery-item {
    flex-basis: 104px;
  }
}

/* Final mobile override: wins over older responsive rules and prevents overlap. */
@media (max-width: 768px) {
  .site-header .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 12px !important;
  }

  .container {
    width: calc(100% - 24px) !important;
    max-width: 560px !important;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) 46px !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 0 !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 999px !important;
  }

  .site-logo {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: auto !important;
    justify-self: center !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-logo img {
    width: auto !important;
    height: 48px !important;
  }

  .reservation-group {
    position: static !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    justify-content: stretch !important;
  }

  .button-secondary.reservation-button,
  .button-secondary.button-call {
    display: inline-flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 44px !important;
    padding: 8px 10px !important;
    font-size: 0.72rem !important;
    line-height: 1.12 !important;
    text-align: center !important;
    white-space: normal !important;
    margin: 0 !important;
  }

  .site-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .hero {
    min-height: 320px !important;
    padding: 0 !important;
  }

  .hero-slider,
  .hero-overlay {
    inset: 6px !important;
    border-radius: 14px !important;
  }

  .hero-copy-grid,
  .feature-grid,
  .packages-grid,
  .preparation-grid,
  .about-intro-grid,
  .about-story-grid,
  .about-detail-grid,
  .about-project-grid,
  .contact-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy-text,
  .section-header,
  .packages-section .section-header,
  .preparation-header,
  .testimonial-section .section-header {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .hero-copy-text h1,
  .section-header h2,
  .packages-title,
  .preparation-header h2,
  .testimonial-section .section-header h2,
  .faq-section h2 {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    margin-inline: auto !important;
    font-size: clamp(1.65rem, 7vw, 2.35rem) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-copy-text p,
  .section-header p,
  .packages-subtitle,
  .preparation-header p {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 18px auto 0 !important;
    padding: 18px 10px 10px !important;
    border-radius: 16px !important;
    overflow: visible !important;
  }

  .hero-stats::before {
    content: "❤" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: -17px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #d73d84 !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12) !important;
    z-index: 2 !important;
  }

  .feature-card,
  .package-card,
  .preparation-card,
  .testimonial-card {
    width: 100% !important;
    max-width: 360px !important;
    min-width: 0 !important;
    margin-inline: auto !important;
  }

  .stat-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 112px !important;
    padding: 10px 6px !important;
    gap: 7px !important;
    border-radius: 12px !important;
  }

  .stat-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
  }

  .stat-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .stat-card strong {
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
    padding-bottom: 7px !important;
    margin: 0 !important;
  }

  .stat-card span {
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }

  .feature-card,
  .package-card,
  .preparation-card {
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .feature-card p,
  .package-items,
  .preparation-card p,
  .testimonial-card p,
  .faq-panel {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .package-card {
    grid-template-rows: auto 1fr !important;
    min-height: 0 !important;
  }

  .package-card-image {
    height: auto !important;
    max-height: 190px !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
  }

  .preparation-visual {
    min-height: 145px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .testimonial-card {
    flex-basis: min(82vw, 340px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding-bottom: 18px !important;
  }

  .testimonial-card p {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .testimonial-author {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: auto !important;
  }

  .reservation-popup {
    position: fixed !important;
    top: 78px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-height: calc(100dvh - 92px) !important;
    overflow: auto !important;
  }

  .faq-panel {
    display: none !important;
    max-height: 0 !important;
    padding: 0 18px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  .faq-item.active + .faq-panel {
    display: block !important;
    padding: 14px 18px 18px !important;
    max-height: 1000px !important;
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.06) !important;
  }
}
