/* Royal Cuts — Design System */

:root {
  --color-bg: #000000;
  --color-bg-elevated: #0a0a0a;
  --color-bg-card: #111111;

  --color-gold-light: #f9e498;
  --color-gold: #d4af37;
  --color-gold-mid: #c9a227;
  --color-gold-dark: #8b6914;
  --color-gold-bronze: #5c4033;

  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-silver: #c0c0c0;

  --gradient-gold: linear-gradient(135deg, #f9e498 0%, #d4af37 45%, #8b6914 100%);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.25);
  --border-gold: 1px solid rgba(212, 175, 55, 0.4);

  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-accent: "Great Vibes", cursive;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --header-height: 72px;
  --container-max: 1200px;
  --container-narrow: 720px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition: 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

strong {
  color: var(--color-gold);
  font-weight: 600;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--color-bg);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  color: var(--color-bg);
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: var(--border-gold);
}

.btn--outline:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-gold-light);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

.btn--responsive {
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

.btn__text-short {
  display: none;
}

.btn__text-full {
  display: inline;
}

.btn__icon {
  flex-shrink: 0;
}

/* Shimmer hover */
.btn--shimmer {
  position: relative;
  overflow: hidden;
}

.btn--shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
}

.btn--shimmer:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
}

.header__logo:hover {
  color: var(--color-text);
}

.header__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-royal {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.header__logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-silver);
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav mobile */
.nav {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  background: rgba(0, 0, 0, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav--open {
  opacity: 1;
  visibility: visible;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition), left var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
  left: 0;
}

.nav__cta {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.1) 25%,
      rgba(0, 0, 0, 0.65) 58%,
      rgba(0, 0, 0, 0.92) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-height) + var(--space-md));
  padding-bottom: calc(var(--space-2xl) + 1rem);
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: 0;
}

.hero__title {
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.hero__title-main {
  display: block;
  font-size: clamp(3rem, 12vw, 5.5rem);
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
}

.hero__title-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.1;
  letter-spacing: normal;
}

.hero__lead {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-silver);
  margin-bottom: var(--space-md);
}

.hero__text {
  display: none;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__photo-wrap {
  display: none;
}

.hero__photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-gold);
  opacity: 0.55;
  transition: opacity var(--transition), color var(--transition);
  animation: hero-bounce 2.5s ease-in-out infinite;
}

.hero__scroll:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Features */
.features {
  background: var(--color-bg-elevated);
  border-block: var(--border-gold);
  padding-block: var(--space-xl);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature {
  text-align: center;
  padding: var(--space-md);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
}

.feature__title {
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.feature__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 280px;
  margin-inline: auto;
}

/* Sections */
.section {
  padding-block: var(--space-xl);
}

.section--divider {
  border-top: var(--border-gold);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.section__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-gold);
}

.section__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* About */
.about p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.about p:last-child {
  margin-bottom: 0;
}

/* Services */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.services-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.services-list__item:hover {
  border-color: rgba(212, 175, 55, 0.7);
}

.services-list__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.services-list__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.services-note {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Gallery */
.gallery {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.gallery__track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: var(--space-xs);
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__slide {
  flex: 0 0 min(280px, 75vw);
  scroll-snap-align: center;
  margin: 0;
}

.gallery__slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.gallery__nav {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: var(--border-gold);
  border-radius: 50%;
  color: var(--color-gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.gallery__nav:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-light);
}

.gallery__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.gallery__crown {
  color: var(--color-gold);
}

/* Price list */
.price-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: var(--space-xs);
}

.price-list__name {
  font-size: 0.9375rem;
  color: var(--color-text);
  white-space: nowrap;
}

.price-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.35);
  min-width: 1rem;
  margin-bottom: 4px;
}

.price-list__price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hours-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hours-list__item:last-child {
  border-bottom: none;
}

.hours-list__item:nth-child(even) {
  background: var(--color-bg-card);
}

.hours-list__day {
  font-weight: 500;
  color: var(--color-text);
}

.hours-list__time {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 0.9375rem;
}

.hours-list__item--closed .hours-list__time {
  color: var(--color-text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.contact-info__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-info__link:hover {
  color: var(--color-gold);
}

.contact-map__link {
  display: block;
  color: inherit;
}

.contact-map__link:hover {
  color: inherit;
}

.contact-map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 220px;
  background: var(--color-bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  transition: border-color var(--transition), background var(--transition);
}

.contact-map__link:hover .contact-map__placeholder {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.05);
}

.contact-map__hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  border-top: var(--border-gold);
  padding-block: var(--space-xl);
  padding-bottom: calc(var(--space-xl) + 88px);
  background: var(--color-bg-elevated);
}

.footer__inner {
  text-align: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.footer__col--brand {
  text-align: center;
}

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__list a {
  color: var(--color-text);
  font-weight: 500;
}

.footer__list a:hover {
  color: var(--color-gold);
}

.footer__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.footer__list--hours li {
  justify-content: space-between;
  align-items: center;
}

.footer__closed {
  color: var(--color-text-muted);
  font-style: italic;
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
}

.footer__copy {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--color-silver);
  margin-bottom: var(--space-xs);
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.5;
}

/* Mobile FAB */
.mobile-fab {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-left: var(--space-sm);
}

.mobile-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
}

.mobile-fab__btn:active {
  transform: scale(0.95);
}

.mobile-fab__btn--phone {
  background: var(--color-bg-card);
  border: var(--border-gold);
  color: var(--color-gold);
}

.mobile-fab__btn--book {
  background: var(--gradient-gold);
  color: var(--color-bg);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn--shimmer::after {
    display: none;
  }
}

/* Mobile-only overrides */
@media (max-width: 767px) {
  .btn--responsive .btn__text-full {
    display: none;
  }

  .btn--responsive .btn__text-short {
    display: inline;
  }

  .section__cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .hero {
    align-items: center;
  }

  .hero__bg-photo {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(105deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.72) 35%,
        rgba(0, 0, 0, 0.25) 60%,
        rgba(0, 0, 0, 0.05) 80%,
        transparent 100%
      ),
      linear-gradient(to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.35) 100%
      );
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .hero__text {
    display: block;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: left;
  }

  .footer__col--brand {
    text-align: left;
  }

  .footer__logo {
    margin-inline: 0;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .gallery__nav {
    display: flex;
  }

  .gallery__slide {
    flex: 0 0 320px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .mobile-fab {
    display: none;
  }

  .footer {
    padding-bottom: var(--space-lg);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    background: none;
    gap: var(--space-lg);
    inset: auto;
  }

  .nav__list {
    flex-direction: row;
    gap: var(--space-md);
  }

  .nav__link {
    font-size: 0.6875rem;
  }

  .nav__cta {
    display: inline-flex;
  }

  .hero {
    align-items: center;
  }

  .hero__bg-photo {
    display: none;
  }

  .hero__overlay {
    background:
      radial-gradient(ellipse 80% 50% at 50% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
      var(--color-bg);
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .hero__content {
    max-width: none;
  }

  .hero__text {
    display: block;
    color: var(--color-text-muted);
  }

  .hero__photo-wrap {
    display: block;
  }

  .hero__scroll {
    display: none;
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--container-max);
  }

  .gallery__slide {
    flex: 0 0 360px;
  }
}
