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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --dark: #0e0e0c;
  --dark-2: #181816;
  --dark-3: #222220;
  --text: #e8e4dc;
  --text-muted: #9a9490;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Barlow', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

button, input, textarea { font: inherit; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(14,14,12,0.95), transparent);
  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(14,14,12,0.97);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201,169,110,0.3);
}

.nav-logo-mark span {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.3;
}

.nav-logo-text small {
  display: block;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.35em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,12,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(14,14,12,0.3) 0%, rgba(14,14,12,0.7) 60%, rgba(14,14,12,1) 100%),
    linear-gradient(135deg, #1a1814 0%, #0e0e0c 50%, #121210 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-accent {
  position: absolute;
  top: 15%;
  right: 8%;
  z-index: 3;
  width: 1px;
  height: 35vh;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-accent-2 {
  position: absolute;
  top: 15%;
  right: calc(8% + 40px);
  z-index: 3;
  width: 1px;
  height: 20vh;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
  opacity: 0.3;
}

.hero-label,
.hero-title,
.hero-desc,
.hero-actions {
  position: relative;
  z-index: 4;
}

.hero-label,
.section-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before,
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-label::before { width: 30px; }

.hero-title {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 0 80px rgba(0,0,0,0.6);
}

.hero-title em,
.section-title em,
.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  position: relative;
  max-width: 420px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-actions,
.cta-buttons {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s, background 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.5rem;
  font-weight: 500;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  color: var(--text-muted);
  padding: 1rem 2rem;
  border: 1px solid rgba(201,169,110,0.15);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.stats {
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 3rem 4rem;
  border-right: 1px solid rgba(201,169,110,0.12);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

section { padding: 8rem 4rem; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201,169,110,0.12);
  margin-top: 4rem;
}

.service-item {
  padding: 3rem;
  border-right: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.service-item:nth-child(2n) { border-right: none; }
.service-item:nth-child(3),
.service-item:nth-child(4) { border-bottom: none; }

.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.03);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-item:hover::before { opacity: 1; }

.service-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.service-item:hover .service-num { color: rgba(201,169,110,0.25); }

.service-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
  transition: width 0.4s;
}

.service-item:hover .service-line { width: 60px; }

.about {
  background: var(--dark-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 500px;
}

.slideshow {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.15);
  overflow: hidden;
  isolation: isolate;
}

.slideshow::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,169,110,0.16);
  z-index: 3;
  pointer-events: none;
}

.slide-stage,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.75s ease, transform 1.1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(14,14,12,0.62) 100%),
    linear-gradient(to right, rgba(14,14,12,0.24), transparent 45%);
}

.slide-counter {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--serif);
  color: var(--text);
}

.slide-current {
  font-size: 34px;
  color: var(--gold-light);
  line-height: 1;
}

.slide-total {
  font-size: 14px;
  color: var(--text-muted);
}

.slide-sep {
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}

.slide-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,169,110,0.28);
  background: rgba(14,14,12,0.68);
  color: var(--text);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.slide-btn span {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-2px);
}

.slide-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.slide-prev { left: 1.5rem; }
.slide-next { right: 1.5rem; }

.slide-dots {
  position: absolute;
  right: 2rem;
  bottom: 2.3rem;
  z-index: 4;
  display: flex;
  gap: 0.7rem;
}

.dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(232,228,220,0.75);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.slideshow.hero-slideshow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 0;
  border: none;
  opacity: 0.68;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    transparent 26%,
    rgba(0,0,0,0.45) 38%,
    black 52%,
    black 100%);
  mask-image: linear-gradient(to right,
    transparent 0%,
    transparent 26%,
    rgba(0,0,0,0.45) 38%,
    black 52%,
    black 100%);
}

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

.slideshow.hero-slideshow .slide::after {
  background:
    linear-gradient(to bottom, rgba(14,14,12,0.08) 0%, rgba(14,14,12,0.12) 48%, rgba(14,14,12,0.78) 100%),
    linear-gradient(to right, rgba(14,14,12,0.72) 0%, rgba(14,14,12,0.34) 28%, rgba(14,14,12,0.08) 100%);
}

.slideshow.hero-slideshow .slide-counter {
  display: flex;
  left: auto;
  right: 4rem;
  bottom: 4rem;
}

.slideshow.hero-slideshow .slide-current {
  font-size: 28px;
}

.slideshow.hero-slideshow .slide-sep {
  width: 34px;
}

.slideshow.hero-slideshow .slide-total {
  font-size: 12px;
}

.slideshow.hero-slideshow .slide-dots {
  display: none;
}

.slideshow.hero-slideshow .slide-btn {
  display: none;
}

.hero-copy-panel {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: 620px;
}

.hero-copy-panel::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -400rem -400rem -400rem -400rem;
  background:
    radial-gradient(ellipse at 42% 54%,
      rgba(0,0,0,1) 0%,
      rgba(8,8,7,0.0) 42%,
      rgba(10,10,9,0.0) 64%,
      rgba(10,10,9,0.0) 82%,
      rgba(14,14,12,0) 100%);
  pointer-events: none;
}

.about-gold-line {
  display: none;
}

.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.about-value-icon {
  width: 6px;
  height: 6px;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.about-value-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.about-value-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.process { background: var(--dark); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.process-step {
  padding: 3rem 2.5rem 2.5rem;
  border-right: 1px solid rgba(201,169,110,0.12);
  position: relative;
}

.process-step:last-child { border-right: none; }

.process-step-connector {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: translateX(-50%) translateY(-6px);
}

.process-step-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.process-step-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.cta-section {
  background: var(--dark-2);
  text-align: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'A.S.';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 400px;
  font-weight: 300;
  color: rgba(201,169,110,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.cta-section .section-label {
  justify-content: center;
  position: relative;
}

.cta-section .section-label::before { display: none; }

.cta-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 auto 3rem;
  position: relative;
  max-width: 480px;
}

.cta-buttons { justify-content: center; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.contact-info {
  padding: 8rem 5rem;
  background: var(--dark-3);
  border-right: 1px solid rgba(201,169,110,0.12);
  --contact-column-width: min(100%, 440px);
}

.contact-form-side {
  padding: 8rem 5rem;
  background: var(--dark);
}

.contact-info > .section-label,
.contact-info > .section-title,
.contact-info > .contact-detail,
.contact-info > .social-links {
  width: var(--contact-column-width);
  margin-left: 0;
}

.contact-info > .section-label::before {
  flex: 0 0 30px;
}

.contact .section-title {
  text-align: left;
}

.contact .section-title em {
  display: inline-block;
}

.contact-detail {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-item-val {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--text);
  overflow-wrap: anywhere;
}

.social-links {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--serif);
  transition: border-color 0.3s, color 0.3s;
}

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

.form-kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.form-group { margin-bottom: 2rem; }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 0.75rem 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-textarea {
  resize: none;
  height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(154,148,144,0.5); }

.form-submit {
  cursor: pointer;
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border: none;
  transition: opacity 0.3s;
  width: 100%;
}

.form-submit:hover { opacity: 0.85; }

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 14px;
}

.form-status.success { color: var(--gold-light); }
.form-status.error { color: #f5b5a8; }

footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(201,169,110,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero > * { animation: fadeUp 1s ease both; }
.hero-label { animation-delay: 0.2s; }
.hero-title { animation-delay: 0.4s; }
.hero-desc { animation-delay: 0.6s; }
.hero-actions { animation-delay: 0.8s; }

@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  section { padding: 6rem 3rem; }
  .hero { padding: 0 3rem 5rem; }
  .slideshow.hero-slideshow {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    opacity: 0.58;
  }

  .slideshow.hero-slideshow .slide-counter {
    right: 3rem;
    bottom: 3rem;
  }

  .stat { padding: 2.5rem; }
  .about { gap: 4rem; padding: 6rem 3rem; }
  .contact-info,
  .contact-form-side { padding: 6rem 3rem; }
  .contact-info { --contact-column-width: min(100%, 390px); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-right: 1px solid rgba(201,169,110,0.12); }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-top: 1px solid rgba(201,169,110,0.12); }
  .process-step:nth-child(3) .process-step-connector,
  .process-step:nth-child(4) .process-step-connector { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding: 0 1.5rem 4rem;
    min-height: 100svh;
    justify-content: flex-end;
  }

  .hero-grid {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 80%, black 100%);
    opacity: 0.05;
  }

  .slideshow.hero-slideshow {
    inset: 0;
    width: auto;
    height: auto;
    border: none;
    box-shadow: none;
    opacity: 0.32;
    pointer-events: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .slideshow.hero-slideshow::before,
  .slideshow.hero-slideshow .slide-counter,
  .slideshow.hero-slideshow .slide-dots,
  .slideshow.hero-slideshow .slide-btn {
    display: none;
  }

  .slideshow.hero-slideshow .slide img {
    filter: saturate(0.75) contrast(1.05);
  }

  .slideshow.hero-slideshow .slide::after {
    background:
      linear-gradient(to bottom, rgba(14,14,12,0.62) 0%, rgba(14,14,12,0.3) 42%, rgba(14,14,12,0.96) 100%),
      linear-gradient(to right, rgba(14,14,12,0.78), rgba(14,14,12,0.38));
  }

  .hero-accent,
  .hero-accent-2,
  .hero-scroll { display: none; }

  .hero-label { font-size: 10px; }
  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .hero-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-copy-panel {
    width: 100%;
  }

  .hero-copy-panel::before {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    padding: 2rem 1.5rem;
  }

  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 44px; }
  section { padding: 4rem 1.5rem; }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .service-item {
    border-right: none !important;
    padding: 2rem 1.5rem;
  }

  .service-item:nth-child(3) { border-bottom: 1px solid rgba(201,169,110,0.12); }
  .service-item:last-child { border-bottom: none; }
  .service-num { font-size: 48px; }

  .about {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2.5rem;
  }

  .about-visual { min-height: 390px; }
  .slideshow { min-height: 390px; }
  .about-gold-line { display: none; }
  .about-content p { font-size: 14px; }
  .slide-btn { width: 40px; height: 40px; }
  .slide-prev { left: 1rem; }
  .slide-next { right: 1rem; }
  .slide-counter { left: 1.3rem; bottom: 1.4rem; }
  .slide-dots { right: 1.3rem; bottom: 1.7rem; }

  .process-steps { grid-template-columns: 1fr; }

  .process-step {
    border-right: none !important;
    border-top: 1px solid rgba(201,169,110,0.12) !important;
    padding: 2rem 1.5rem;
  }

  .process-step:first-child { border-top: none !important; }
  .process-step-connector { display: none !important; }

  .cta-section { padding: 5rem 1.5rem; }
  .cta-section::before { font-size: 200px; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

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

  .contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    padding: 4.5rem 1.5rem 3.5rem;
    --contact-column-width: 100%;
  }

  .contact-form-side { padding: 4rem 1.5rem; }

  .contact .section-title {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 2.5rem;
  }

  .contact-detail {
    margin-top: 2.5rem;
    gap: 1.75rem;
  }

  .contact-item-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    margin-bottom: 0.45rem;
  }

  .contact-item-val {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: var(--text);
  }

  .social-links {
    margin-top: 2.25rem;
  }

  .social-link {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-logo { order: -1; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .slide-current { font-size: 28px; }
  .slide-sep { width: 26px; }
}
