@font-face {
  font-family: 'cFont';
  src: url('../fonts/arista-pro.pro-trial-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --copper: #c4795a;
  --copper-light: #d4956f;
  --copper-dark: #a8613f;
  --blush: #f3e4dc;
  --blush-deep: #e8cfc3;
  --cream: #faf6f2;
  --ivory: #fffdfb;
  --espresso: #2a2220;
  --mocha: #5c4f4a;
  --taupe: #9a8b84;
  --gold: #c9a87c;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(42, 34, 32, 0.07);
  --shadow-hover: 0 28px 70px rgba(42, 34, 32, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --pad-x: clamp(20px, 4vw, 40px);
  --pad-left: clamp(28px, 5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(243, 228, 220, 0.6), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(201, 168, 124, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'cFont', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: calc(var(--pad-x) + var(--pad-left));
  padding-right: var(--pad-x);
  position: relative;
  z-index: 1;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--cream);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 56px;
  animation: pulse 1.5s ease infinite;
}

.loader-bar {
  width: 80px;
  height: 2px;
  background: var(--blush-deep);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--copper);
  animation: loadBar 1s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  padding: 14px 0;
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(42, 34, 32, 0.06);
}

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

.logo img {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mocha);
  transition: color var(--transition);
}

.nav-desktop a:hover {
  color: var(--copper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.instagram-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--blush-deep);
  transition: border-color var(--transition), transform var(--transition);
}

.instagram-link:hover {
  border-color: var(--copper);
  transform: scale(1.05);
}

.instagram-link img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(168, 97, 63, 0.25);
}

.btn-copper {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
}

.btn-copper:hover {
  background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.btn-outline-dark {
  
  color: white;
  border-color: var(--blush-deep);
}

.btn-outline-dark:hover {
  color: #2a2220;
  background: var(--blush);
  border-color: var(--copper-light);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--ivory);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--espresso);
}

.nav-mobile a:hover {
  color: var(--copper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 100px;
  padding-right: var(--pad-x);
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  color: var(--espresso);
  margin-bottom: 8px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--copper);
}

.hero-tagline {
  font-family: 'cFont', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--copper-dark);
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-desc {
  font-size: 16px;
  color: var(--mocha);
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--blush-deep);
  animation: fadeUp 0.9s 0.5s ease both;
}

.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--copper);
  font-weight: 600;
}

.hero-stat span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--taupe);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  padding: 75px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--copper-light);
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--espresso);
}

.section-subtitle {
  margin-top: 16px;
  font-size: 16px;
  color: var(--taupe);
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  background: var(--ivory);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: var(--blush-deep);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--copper);
  font-size: 22px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--espresso);
}

.feature-card p {
  font-size: 14px;
  color: var(--taupe);
  font-weight: 300;
  line-height: 1.7;
}

.gallery {
  background: var(--espresso);
  padding: 50px 0;
}

.gallery .section-title {
  color: var(--ivory);
}

.gallery .section-eyebrow {
  color: var(--gold);
}

.gallery .section-eyebrow::before,
.gallery .section-eyebrow::after {
  background: var(--gold);
}

.gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

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

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

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; }

.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.services-list {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 8px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 207, 195, 0.5);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--blush);
  cursor: pointer;
  transition: padding-left var(--transition);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  padding-left: 8px;
}

.service-name {
  font-size: 15px;
  color: var(--espresso);
  flex: 1;
  line-height: 1.4;
  transition: color var(--transition);
}

.service-item:hover .service-name {
  color: var(--copper);
}

.service-name.expanded {
  white-space: normal;
}

.service-name:not(.expanded) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--copper);
  white-space: nowrap;
}

.service-price small {
  font-size: 14px;
  font-weight: 400;
}

.services-cta {
  text-align: center;
  margin-top: 52px;
}

.about {
  background: var(--ivory);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  min-height: 480px;
}

.about-img-main {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-img-accent {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow);
  align-self: end;
}

.about-deco {
  display: none;
}

.about-content .section-eyebrow {
  justify-content: flex-start;
}

.about-content .section-eyebrow::before {
  display: none;
}

.about-content {
  padding-left: clamp(12px, 2vw, 32px);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 15px;
  color: var(--mocha);
  margin-bottom: 16px;
  font-weight: 300;
}

.about-content .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--copper-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--blush-deep);
}

.about-value strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--espresso);
  margin-bottom: 4px;
}

.about-value span {
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.5px;
}

.instagram-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
}

.instagram-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.instagram-cta p {
  color: var(--taupe);
  margin-bottom: 32px;
  font-weight: 300;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 28px;
  transition: gap var(--transition);
}

.instagram-handle:hover {
  gap: 16px;
}

.contact {
  background: var(--cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-block {
  padding: 32px;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--blush-deep);
  transition: box-shadow var(--transition);
}

.contact-block:hover {
  box-shadow: var(--shadow);
}

.contact-block-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border-radius: 50%;
  margin-bottom: 16px;
  font-size: 18px;
}

.contact-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--espresso);
}

.contact-block p {
  font-size: 14px;
  color: var(--mocha);
  font-weight: 300;
  line-height: 1.8;
}

.contact-block strong {
  color: var(--espresso);
  font-weight: 500;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blush-deep);
  position: relative;
}

.contact-map-inner {
  text-align: center;
  padding: 40px;
}

.contact-map-inner h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--espresso);
}

.contact-map-inner p {
  color: var(--mocha);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.8;
}

.footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: border-color var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
}

.footer-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .about-grid {
    gap: 48px;
  }

  .nav-desktop {
    gap: 24px;
  }

  .nav-desktop a {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 992px) {
  :root {
    --pad-left: clamp(16px, 3vw, 28px);
  }

  .header {
    padding: 16px 0;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 45vh;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(to bottom, transparent 40%, var(--cream) 100%);
  }

  .hero-content {
    padding-top: 32px;
    padding-bottom: 64px;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
    max-width: 220px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 36px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-scroll {
    display: none;
  }

  .nav-desktop,
  .header-actions .btn-sm,
  .header-actions .instagram-link {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  section {
    padding: 80px 0;
  }

  .gallery {
    padding: 80px 0;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    height: 280px;
  }

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

  .about-images {
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
  }

  .about-img-main {
    min-height: 300px;
  }

  .about-img-accent {
    height: 180px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-content .section-eyebrow,
  .about-content .section-title {
    text-align: center;
    justify-content: center;
  }

  .about-content .section-eyebrow::after {
    display: none;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

  .contact-map {
    min-height: 320px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --pad-left: 12px;
  }

  .container {
    padding-left: calc(var(--pad-x) + var(--pad-left));
  }

  .hero-visual {
    min-height: 38vh;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat {
    flex: 1;
    min-width: 90px;
  }

  .hero-stat strong {
    font-size: 24px;
  }

  .services-list {
    padding: 4px 20px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }

  .service-item:hover {
    padding-left: 0;
  }

  .service-name:not(.expanded) {
    white-space: normal;
  }

  .about-values {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .about-img-main {
    grid-column: 1;
    grid-row: auto;
    min-height: 260px;
    height: 260px;
  }

  .about-img-accent {
    grid-column: 1;
    grid-row: auto;
    height: 220px;
    border-width: 4px;
  }

  .instagram-cta {
    padding: 64px 0;
  }

  .contact-block {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 16px;
    --pad-left: 8px;
  }

  .header-inner {
    gap: 12px;
  }

  .logo img {
    height: 36px;
  }

  section {
    padding: 64px 0;
  }

  .gallery {
    padding: 64px 0;
  }

  .hero-content {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    max-width: none;
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

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

  .gallery-item:nth-child(n) {
    height: 240px;
  }

  .gallery-item:nth-child(1) {
    height: 260px;
  }

  .feature-card {
    padding: 36px 24px;
  }

  .services-list {
    padding: 4px 16px;
    border-radius: var(--radius-sm);
  }

  .service-price {
    font-size: 20px;
  }

  .nav-mobile a {
    font-size: 26px;
  }

  .footer-nav a {
    font-size: 11px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 12px;
  }
}
