:root {
  --accent: #4997a0;
  --accent-dark: #337b83;
  --black: #111111;
  --black-soft: #171717;
  --white: #ffffff;
  --gray: #777777;
  --gray-light: #aaaaaa;
  --light: #f5f5f2;
  --border: #dddddd;
  --container: 1240px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open, body.portfolio-modal-open {
  overflow: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3 {
  font-weight: 600;
}

h2 {
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -3.5px;
}

h2 em {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--accent);
}

.btn {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  background: var(--accent);
}

.btn:active {
  transform: scale(0.98);
}

.btn-small {
  min-height: 44px;
  padding: 0 21px;
  font-size: 13px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-button span {
  width: 25px;
  height: 1px;
  background: var(--black);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 25px;
}

.menu-button.active span:first-child {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-button.active span:last-child {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 100vh;
  padding: 140px 0 70px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 83% 18%, rgba(73, 151, 160, 0.14), transparent 34%), var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(64px, 7.2vw, 115px);
  line-height: 0.89;
  letter-spacing: -6px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-description {
  max-width: 520px;
  margin-top: 38px;
  color: #666666;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.hero-primary {
  min-width: 185px;
  justify-content: space-between;
  gap: 30px;
}

.hero-primary span {
  transition: transform 0.25s ease;
}

.hero-primary:hover span {
  transform: translateX(5px);
}

.hero-secondary {
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--black);
}

.hero-info {
  display: flex;
  gap: 44px;
  margin-top: 70px;
}

.hero-info div {
  padding-left: 15px;
  border-left: 1px solid #dddddd;
}

.hero-info span {
  font-size: 9px;
  color: var(--accent);
}

.hero-info p {
  margin-top: 5px;
  font-size: 12px;
}

.hero-visual {
  min-height: 650px;
  position: relative;
  min-width: 0;
}

.hero-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 600px;
  padding: 27px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -130px;
  right: -130px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.hero-card-top, .hero-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card-bottom {
  justify-content: flex-start;
  gap: 24px;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap img {
  width: 72%;
  max-width: 365px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.14);
}

.hero-floating-text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1.1px;
  line-height: 1.65;
}

.section {
  padding: 150px 0;
}

.section-number {
  display: block;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--accent);
}

.section-number.light {
  color: rgba(255, 255, 255, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-grid > * {
  min-width: 0;
}

.about-text {
  max-width: 570px;
  padding-top: 45px;
}

.large-text {
  margin-bottom: 28px;
  font-size: 23px;
  line-height: 1.55;
}

.about-text > p:last-child {
  color: var(--gray);
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 72px;
}

.section-heading > p {
  max-width: 350px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
}

.services-section {
  background: var(--light);
}

.price-list {
  border-top: 1px solid #cfcfcb;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #cfcfcb;
  transition: padding-left 0.25s ease;
}

.price-item:hover {
  padding-left: 12px;
}

.price-main {
  display: flex;
  align-items: center;
  gap: 25px;
  min-width: 0;
}

.service-index {
  min-width: 25px;
  font-size: 9px;
  color: var(--accent);
}

.price-item h3 {
  font-size: 24px;
  font-weight: 500;
}

.price-item p {
  margin-top: 6px;
  color: var(--gray);
  font-size: 12px;
}

.price-item strong {
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 20px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: #eeeeee;
  min-width: 0;
  cursor: pointer;
  outline: none;
}

.portfolio-card:focus-visible {
  box-shadow: 0 0 0 3px var(--accent);
}

.portfolio-large {
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover img {
  transform: scale(1.045);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.62));
  color: var(--white);
  pointer-events: none;
}

.portfolio-overlay span {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.portfolio-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 34px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.portfolio-modal {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 68px);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  overflow: auto;
  transform: translateY(20px) scale(0.985);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.portfolio-modal-backdrop.active .portfolio-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.portfolio-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid #dddddd;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 27px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.portfolio-modal-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.portfolio-modal-image {
  min-height: 600px;
  background: #eeeeee;
  overflow: hidden;
}

.portfolio-modal-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.portfolio-modal-content {
  padding: 90px 65px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.portfolio-modal-label {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.7px;
  margin-bottom: 30px;
}

.portfolio-modal-content h2 {
  font-size: clamp(42px, 4vw, 64px);
  letter-spacing: -3px;
  line-height: 0.98;
}

.portfolio-modal-line {
  width: 100%;
  height: 1px;
  background: #dddddd;
  margin: 35px 0;
}

.portfolio-modal-content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.9;
  white-space: pre-line;
}

.portfolio-modal-book {
  margin-top: auto;
  padding-top: 45px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--black);
  padding-bottom: 5px;
}

.portfolio-modal-book span {
  transition: transform 0.2s ease;
}

.portfolio-modal-book:hover span {
  transform: translateX(5px);
}

.booking-section {
  width: 100%;
  padding: 150px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
  align-items: start;
  min-width: 0;
}

.booking-grid > * {
  min-width: 0;
  max-width: 100%;
}

.booking-copy {
  position: sticky;
  top: 130px;
  min-width: 0;
}

.booking-copy > p {
  max-width: 420px;
  margin-top: 30px;
  color: #999999;
  line-height: 1.8;
}

.booking-features {
  margin-top: 58px;
  max-width: 420px;
}

.booking-features div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #333333;
}

.booking-features span {
  min-width: 20px;
  font-size: 9px;
  color: var(--accent);
}

.booking-features p {
  font-size: 12px;
}

.booking-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 44px;
  margin: 0;
  background: var(--black-soft);
  overflow: hidden;
}

.booking-step {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid #333333;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.booking-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.disabled-step {
  opacity: 0.22;
  pointer-events: none;
  filter: grayscale(1);
}

.booking-step-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
  min-width: 0;
}

.booking-step-title > span {
  margin-top: 5px;
  font-size: 9px;
  color: var(--accent);
  flex: 0 0 auto;
}

.booking-step-title > div {
  min-width: 0;
}

.booking-step-title h3 {
  font-size: 19px;
  font-weight: 500;
  overflow-wrap: break-word;
}

.selected-date-label {
  margin-top: 5px;
  color: #777777;
  font-size: 10px;
  text-transform: capitalize;
  overflow-wrap: break-word;
}

.service-options {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.service-option {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 70px;
  padding: 17px 19px;
  border: 1px solid #333333;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-option:hover {
  border-color: #777777;
}

.service-option:active {
  transform: scale(0.995);
}

.service-option.active {
  background: var(--accent);
  border-color: var(--accent);
}

.service-option > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.service-option strong {
  display: block;
  max-width: 100%;
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
  overflow-wrap: break-word;
}

.service-option div span {
  color: #777777;
  font-size: 9px;
}

.service-option.active div span {
  color: rgba(255, 255, 255, 0.72);
}

.service-option > span {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
  text-align: right;
}

.date-slider {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.date-button {
  width: 100%;
  min-width: 0;
  min-height: 80px;
  padding: 8px 4px;
  border: 1px solid #333333;
  background: transparent;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.date-button:hover {
  border-color: #777777;
}

.date-button.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.date-button .day-name {
  font-size: 8px;
  color: #777777;
}

.date-button.active .day-name {
  color: #777777;
}

.date-button strong {
  font-size: 19px;
  font-weight: 500;
}

.date-button .month-name {
  font-size: 8px;
}

.time-grid {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-button {
  width: 100%;
  min-width: 0;
  min-height: 49px;
  border: 1px solid #333333;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.time-button:hover:not(:disabled) {
  border-color: var(--white);
}

.time-button.active {
  background: var(--accent);
  border-color: var(--accent);
}

.time-button:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-details {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.booking-field {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.booking-field.full-field {
  grid-column: 1 / -1;
}

.booking-field label {
  margin-bottom: 7px;
  color: #777777;
  font-size: 9px;
}

.booking-field input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #333333;
  outline: 0;
  background: #111111;
  color: var(--white);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.booking-field input::placeholder {
  color: #555555;
}

.booking-field input:focus {
  border-color: var(--accent);
}

.booking-summary {
  display: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 25px;
  padding: 18px;
  background: #111111;
  font-size: 11px;
  overflow: hidden;
}

.booking-summary.visible {
  display: block;
}

.booking-summary div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 6px 0;
}

.booking-summary span {
  min-width: 0;
  overflow-wrap: break-word;
}

.booking-summary span:first-child {
  color: #777777;
  flex: 0 0 auto;
}

.booking-summary span:last-child {
  text-align: right;
  flex: 1 1 auto;
}

.booking-submit {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 59px;
  margin-top: 20px;
  padding: 0 22px;
  border: 0;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-submit:hover {
  background: var(--white);
  color: var(--black);
}

.booking-smallprint {
  margin-top: 12px;
  color: #666666;
  font-size: 9px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-grid > * {
  min-width: 0;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
  padding-top: 15px;
}

.contact-details div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.contact-details span {
  color: var(--gray);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-details strong, .contact-details a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.contact-details a:hover {
  color: var(--accent);
}

footer {
  padding: 29px 0;
  border-top: 1px solid #dddddd;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

footer p {
  color: var(--gray);
  font-size: 10px;
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 3000;
  width: min(390px, calc(100% - 32px));
  padding: 20px;
  background: var(--white);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateY(calc(100% + 50px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.toast.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast strong {
  display: block;
  font-size: 13px;
}

.toast span {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }
  .hero-grid {
    gap: 45px;
  }
  .hero-visual {
    min-height: 570px;
  }
  .hero-card {
    width: 95%;
    height: 530px;
  }
  .booking-grid {
    gap: 60px;
  }
  .portfolio-modal-content {
    padding: 80px 45px 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .desktop-nav, .desktop-book {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    padding: 35px 16px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    font-size: 21px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    overflow-y: auto;
  }
  .mobile-menu.active {
    transform: translateX(0);
  }
  .mobile-menu .btn {
    width: 100%;
    margin-top: auto;
    font-size: 14px;
  }
  .hero {
    min-height: auto;
    padding: 135px 0 80px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }
  .hero-copy {
    max-width: 700px;
  }
  .hero h1 {
    font-size: clamp(60px, 11vw, 95px);
  }
  .hero-visual {
    min-height: 600px;
  }
  .hero-card {
    width: 88%;
    height: 560px;
  }
  .section, .booking-section {
    padding: 100px 0;
  }
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }
  .about-text {
    padding-top: 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }
  .booking-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }
  .booking-copy {
    position: static;
  }
  .booking-features {
    max-width: 100%;
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 55px;
  }
  .portfolio-modal {
    grid-template-columns: minmax(0, 1fr);
  }
  .portfolio-modal-image {
    min-height: 420px;
    max-height: 52vh;
  }
  .portfolio-modal-image img {
    min-height: 420px;
    max-height: 52vh;
  }
  .portfolio-modal-content {
    padding: 50px 40px;
  }
  .portfolio-modal-book {
    margin-top: 40px;
  }
}

@media (max-width: 700px) {
  h2 {
    font-size: 48px;
    letter-spacing: -2.3px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand span {
    font-size: 13px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 59px;
    letter-spacing: -4px;
  }
  .hero-description {
    max-width: 95%;
    font-size: 15px;
  }
  .hero-info {
    gap: 15px;
    justify-content: space-between;
    margin-top: 50px;
  }
  .hero-visual {
    min-height: 480px;
  }
  .hero-card {
    width: 93%;
    height: 450px;
    padding: 20px;
  }
  .hero-floating-text {
    padding: 19px 21px;
    font-size: 8px;
  }
  .large-text {
    font-size: 20px;
  }
  .price-item h3 {
    font-size: 20px;
  }
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .portfolio-card, .portfolio-large {
    height: 400px;
    grid-row: auto;
  }
  .booking-section {
    width: 100%;
    overflow: hidden;
  }
  .booking-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
    min-width: 0;
  }
  .booking-grid > * {
    max-width: 100%;
    min-width: 0;
  }
  .booking-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 26px 16px;
    margin: 0;
    overflow: hidden;
  }
  .booking-step {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .service-options {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .service-option {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 70px;
    padding: 15px 16px;
    gap: 12px;
    overflow: hidden;
  }
  .service-option > div {
    min-width: 0;
    flex: 1 1 auto;
  }
  .service-option strong {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .service-option > span {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
  }
  .date-slider {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    padding: 0 0 8px 0;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .date-slider::-webkit-scrollbar {
    display: none;
  }
  .date-button {
    flex: 0 0 68px;
    width: 68px;
    min-width: 68px;
    max-width: 68px;
    min-height: 78px;
  }
  .time-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .time-button {
    width: 100%;
    min-width: 0;
  }
  .booking-details {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-field {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .booking-field.full-field {
    grid-column: auto;
  }
  .booking-field input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 16px;
  }
  .booking-submit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .booking-summary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .contact-details {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }
  .portfolio-modal-backdrop {
    padding: 14px;
    align-items: flex-end;
  }
  .portfolio-modal {
    max-height: calc(100vh - 28px);
  }
  .portfolio-modal-image {
    min-height: 310px;
    height: 42vh;
  }
  .portfolio-modal-image img {
    min-height: 310px;
    height: 42vh;
  }
  .portfolio-modal-content {
    padding: 38px 24px 30px;
  }
  .portfolio-modal-content h2 {
    font-size: 44px;
  }
  .portfolio-modal-content p {
    font-size: 14px;
    line-height: 1.8;
  }
  .portfolio-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 500px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero {
    padding: 115px 0 65px;
  }
  .hero-label {
    margin-bottom: 23px;
    font-size: 9px;
  }
  .hero h1 {
    font-size: 49px;
    line-height: 0.94;
    letter-spacing: -3px;
  }
  .hero-description {
    margin-top: 27px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    margin-top: 30px;
  }
  .hero-primary {
    width: 100%;
  }
  .hero-info {
    display: none;
  }
  .hero-grid {
    gap: 50px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-card {
    width: 94%;
    height: 370px;
  }
  .hero-logo-wrap img {
    width: 80%;
  }
  .hero-card-bottom {
    gap: 12px;
    font-size: 6px;
  }
  .hero-card-top {
    font-size: 6px;
  }
  .hero-floating-text {
    font-size: 7px;
  }
  .section, .booking-section {
    padding: 80px 0;
  }
  h2 {
    font-size: 43px;
  }
  .section-number {
    margin-bottom: 20px;
  }
  .price-item {
    align-items: flex-start;
    gap: 15px;
    padding: 24px 0;
  }
  .price-main {
    gap: 12px;
  }
  .service-index {
    display: none;
  }
  .price-item h3 {
    font-size: 18px;
  }
  .price-item strong {
    font-size: 13px;
  }
  .portfolio-card, .portfolio-large {
    height: 330px;
  }
  .booking-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 24px 14px;
  }
  .booking-step-title {
    gap: 14px;
  }
  .service-option {
    min-height: 68px;
    padding: 15px 14px;
  }
  .service-option strong {
    font-size: 13px;
  }
  .service-option > span {
    font-size: 11px;
  }
  .date-button {
    flex-basis: 66px;
    width: 66px;
    min-width: 66px;
    max-width: 66px;
  }
  .time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .toast {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
  .portfolio-modal-content {
    padding: 32px 20px 26px;
  }
  .portfolio-modal-label {
    margin-bottom: 20px;
  }
  .portfolio-modal-content h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }
  .portfolio-modal-line {
    margin: 25px 0;
  }
  .portfolio-modal-image {
    min-height: 260px;
    height: 38vh;
  }
  .portfolio-modal-image img {
    min-height: 260px;
    height: 38vh;
  }
  .portfolio-modal-book {
    margin-top: 30px;
    padding-top: 0;
  }
}
