:root {
  --bg: #111111;
  --surface: #171717;
  --surface-soft: #1f1f1f;
  --surface-elevated: rgba(255, 255, 255, 0.04);
  --text: #f3eee7;
  --muted: #c8bcae;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #a97c50;
  --accent-strong: #c69868;
  --accent-soft: rgba(169, 124, 80, 0.16);
  --max-width: 1240px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --transition: 220ms ease;
}

.mobile-only-content { display: none; }
.desktop-only-content { display: block; }

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background-color: #111111;
  background-image: url("../img/bg-texture.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.container {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-heading--full {
  max-width: none;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 1rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 500;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1.5rem 0;
  pointer-events: none; /* Let clicks pass through empty space */
}

.header-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none; 
}

.brand, .nav-wrapper {
  pointer-events: auto;
}

.nav-wrapper {
  background: rgba(12, 12, 12, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.6rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: opacity 0.4s cubic-bezier(0.2,0.8,0.2,1), filter 0.4s cubic-bezier(0.2,0.8,0.2,1), transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}

.header.is-scrolled .nav-wrapper {
  opacity: 0.15;
  filter: blur(4px);
  transform: translateY(-8px);
}

.header.is-scrolled .nav-wrapper:hover {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Kept for backward compatibility if missed any file */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.26rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 12, 0.18);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand--logo {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.brand__name {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
}

.brand__tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  padding: 0 0.35rem;
  margin: 0;
}

.nav__item {
  position: relative;
  display: inline-block;
}

/* Nav Preview box */
.nav__preview {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  opacity: 0;
  visibility: hidden;
  width: 240px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 999;
}

.nav__item:hover .nav__preview {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.nav__preview-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.nav__preview-title {
  color: #fff;
  font-family: ui-serif, Georgia, serif;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
}

.nav__link {
  position: relative;
  display: inline-flex;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  color: rgba(243, 238, 231, 0.88);
  transition: color var(--transition), background-color var(--transition);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.44rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.6) 0%, rgba(14, 14, 14, 0.2) 50%, rgba(17, 17, 17, 0.95) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.05);
  animation: bgZoom 30s ease-in-out infinite alternate;
}

.hero__content,
.hero__metrics {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}

.hero__content {
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 1.2rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  font-weight: 700;
}

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

.hero p {
  max-width: 700px;
  margin: 0 0 2rem;
  color: #e5d8cb;
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #0f0d0b;
  box-shadow: 0 18px 36px rgba(169, 124, 80, 0.24);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
}

.hero__metrics {
  display: grid;
  gap: 1rem;
}

.metric-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 500;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.card,
.feature,
.project-card,
.contact-card,
.service-card,
.value-card,
.process-card,
.highlight-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h2,
.card h3,
.feature h3,
.service-card h2,
.service-card h3,
.project-card h2,
.project-card h3,
.value-card h2,
.value-card h3,
.process-card h2,
.process-card h3,
.highlight-card h2,
.highlight-card h3,
.contact-card h2,
.contact-card h3 {
  margin: 0 0 0.9rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}

.card p,
.feature p,
.service-card p,
.project-card p,
.value-card p,
.process-card p,
.highlight-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: stretch;
}

.paired-home-grid {
  position: relative;
}

.media-panel {
  overflow: hidden;
  min-height: 100%;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.media-panel:hover img {
  transform: scale(1.04);
}

.media-panel--section {
  margin-bottom: 1.8rem;
  max-height: 460px;
}

.media-panel--section img {
  aspect-ratio: 16 / 7;
}

.list-clean {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(169, 124, 80, 0.12);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats-band .feature {
  text-align: center;
}

.stats-band strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
}

.services-layout,
.contact-layout,
.story-layout,
.cta-panel,
.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.split-panel--reverse > :first-child {
  order: 2;
}

.split-panel--reverse > :last-child {
  order: 1;
}

.section--paired-home .card,
.section--paired-home .media-panel {
  min-height: 100%;
}

.section--paired-home .paired-home-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.section--paired-home-top {
  padding-bottom: 0.75rem;
}

.section--paired-home-bottom {
  padding-top: 0.75rem;
  margin-top: -0.35rem;
}

.section--paired-home-top .paired-home-grid::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: -0.9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.service-card ul,
.contact-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.service-card li,
.contact-card li {
  margin-bottom: 0.45rem;
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card__link {
  display: block;
  height: 100%;
  color: inherit;
}

.project-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 600ms ease,
    filter 500ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.06);
  filter: brightness(1.06);
}

.project-card__content {
  padding: 1.5rem;
}

.badge {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.project-detail {
  display: grid;
  gap: 2rem;
}

.project-intro {
  padding: 11rem 0 1.6rem;
  text-align: center;
}

.project-intro__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.project-intro__actions--bottom {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.project-intro__title {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  font-weight: 500;
}

.project-section {
  padding-top: 1.4rem;
}

.project-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.5rem;
  align-items: stretch;
}

.project-detail__cover {
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-detail__cover img,
.project-detail__cover video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
}

.project-facts {
  display: grid;
  gap: 1rem;
}

.project-facts__item {
  display: grid;
  gap: 0.28rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-facts__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-facts__label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-facts__value {
  color: var(--text);
  font-size: 1.02rem;
}

.project-summary {
  width: 100%;
  max-width: none;
  text-align: center;
}

.project-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.project-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: var(--surface);
}

.project-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 320ms ease;
  pointer-events: none;
}

.project-gallery__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.project-gallery__button--video {
  overflow: hidden;
}

.project-gallery__video-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-gallery__video-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.34rem solid transparent;
  border-bottom: 0.34rem solid transparent;
  border-left: 0.52rem solid currentColor;
}

.project-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5.8;
  transition:
    filter 320ms ease,
    transform 500ms ease;
}

.project-gallery__item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5.8;
}

.project-gallery__item:hover img {
  filter: brightness(0.72);
  transform: scale(1.04);
}

.project-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1400px);
  max-height: 90vh;
}

.lightbox__media img,
.lightbox__media video {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.72);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 20, 20, 0.8);
  color: var(--text);
  cursor: pointer;
}

.notice {
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-sm);
  background: rgba(169, 124, 80, 0.1);
  border: 1px solid rgba(169, 124, 80, 0.18);
  color: #ead8c4;
}

.cta-banner {
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(169, 124, 80, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin: 0 0 0.8rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
}

.cta-banner p {
  max-width: 760px;
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.page-hero {
  padding: 11rem 0 3rem;
}

.page-hero--compact {
  padding-bottom: 1rem;
}

.page-hero__panel {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.page-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(169, 124, 80, 0.12), transparent 42%),
    radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.05), transparent 24%);
  pointer-events: none;
}

.page-hero__panel > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-list {
  display: grid;
  gap: 1.4rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  align-items: start;
}

.service-card__index {
  min-width: 64px;
  text-align: right;
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.two-column-copy {
  columns: 2 280px;
  gap: 2rem;
}

.two-column-copy p {
  margin-top: 0;
  color: var(--muted);
}

.contact-layout {
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-card a {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--choice {
  padding: 0;
  margin: 0;
  border: 0;
}

.field--choice legend {
  margin-bottom: 0.8rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.field label {
  color: var(--muted);
  font-size: 0.95rem;
}

.field-note {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.2rem;
  color: rgba(243, 238, 231, 0.64);
  font-size: 0.84rem;
}

.field-note--placeholder,
.field-note.is-hidden {
  visibility: hidden;
}

.contact-segment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-option {
  position: relative;
  display: flex;
}

.contact-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-option span {
  width: 100%;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.contact-option input:hover + span,
.contact-option input:focus-visible + span {
  border-color: rgba(169, 124, 80, 0.5);
  color: var(--text);
  transform: translateY(-1px);
}

.contact-option input:checked + span {
  border-color: rgba(169, 124, 80, 0.68);
  background:
    linear-gradient(135deg, rgba(169, 124, 80, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(169, 124, 80, 0.7);
  background: rgba(255, 255, 255, 0.045);
}

.map-placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    url("../img/map-placeholder.svg") center/cover no-repeat;
  text-align: center;
}

.map-placeholder p {
  max-width: 320px;
  margin: 0;
  color: #f7eee3;
  background: rgba(12, 12, 12, 0.58);
  padding: 1rem 1.2rem;
  border-radius: 18px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--text);
  border-color: rgba(169, 124, 80, 0.4);
  background: rgba(169, 124, 80, 0.08);
}

.footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
}

.footer h3 {
  margin-top: 0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero__grid,
  .intro-grid,
  .services-layout,
  .story-layout,
  .split-panel,
  .contact-layout,
  .project-detail__hero,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .grid--4,
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero {
    min-height: auto;
  }

  .split-panel--reverse > :first-child,
  .split-panel--reverse > :last-child {
    order: initial;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .header__inner {
    padding: 0.65rem 1rem;
  }

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

  .nav {
    position: fixed;
    inset: 84px 0 auto;
    width: min(calc(100% - 1rem), 480px);
    margin: 0 auto;
    padding: 1rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav__link {
    justify-content: space-between;
    padding: 1rem 1rem;
  }

  .hero {
    padding-top: 8rem;
  }

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

  .media-panel--section img {
    aspect-ratio: 4 / 3;
  }

  .stats-band,
  .grid--2,
  .grid--3,
  .grid--4,
  .contact-form__grid,
  .contact-segment,
  .project-gallery {
    grid-template-columns: 1fr;
  }

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

  .service-card__index {
    text-align: left;
  }

  .page-hero__panel {
    padding: 2rem;
  }

  .project-detail__cover img {
    min-height: 300px;
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .section,
  .section-tight {
    padding: 4rem 0;
  }

  .section--paired-home-top {
    padding-bottom: 0.5rem;
  }

  .section--paired-home-bottom {
    padding-top: 0.5rem;
    margin-top: 0;
  }

  .section--paired-home-top .paired-home-grid::after {
    left: 0.75rem;
    right: 0.75rem;
    bottom: -0.65rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .page-hero {
    padding-top: 8.8rem;
  }

  .project-intro {
    padding-top: 8.8rem;
  }

  .project-intro__actions {
    margin-bottom: 1rem;
  }

  .project-intro__actions--bottom {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .brand__name {
    font-size: 1.2rem;
  }

  .brand__tag {
    font-size: 0.64rem;
  }

  .cta-banner,
  .card,
  .feature,
  .project-card,
  .contact-card,
  .service-card,
  .value-card,
  .process-card,
  .highlight-card {
    padding: 1.35rem;
  }
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 0;
}

.team-member {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  border: 4px solid var(--surface-soft);
  box-shadow: var(--shadow);
  background-color: var(--surface);
}

.team-member:hover {
  transform: scale(1.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.team-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.team-member:hover .team-member__img {
  opacity: 0.15;
}

.team-member__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.team-member:hover .team-member__info {
  opacity: 1;
  transform: translateY(0);
}

.team-member__name {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.3rem;
  color: var(--text);
  line-height: 1.2;
}

.team-member__role {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.team-member__desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* About Hero */
.hero-about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-about__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.7) 0%, rgba(14,14,14,0.3) 50%, #171717 100%);
}

.hero-about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: bgZoom 25s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-about__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.hero-about__content {
  max-width: 800px;
  margin-top: 10vh;
}

.hero-about__title {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 500;
  margin: 1rem 0 2rem;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-about__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #e5d8cb;
  line-height: 1.6;
  max-width: 650px;
}

.scroll-indicator {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
  opacity: 0.8;
}

.scroll-indicator__text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.scroll-indicator__line {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-indicator__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  transform-origin: right;
}

@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (max-width: 820px) {
  .scroll-indicator {
    display: none;
  }
}

/* Global Reveal & Dynamic Interactions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(169, 124, 80, 0.3);
}

.button--secondary:hover,
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

/* Editorial Layout (Second Block) */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.editorial-grid--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.editorial-grid--reverse .editorial-text {
  order: 2;
}

.editorial-grid--reverse .editorial-image-wrapper {
  order: 1;
}

.editorial-text {
  padding: 2rem 0;
}

.editorial-title {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 2rem;
}

.editorial-title .text-accent {
  display: block;
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
}

.editorial-p {
  font-size: 1.1rem;
  color: #e5d8cb;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.editorial-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

/* Parallax hover effect for editorial images */
.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.02);
}

.editorial-image-wrapper:hover .editorial-image {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .editorial-grid, .editorial-grid--reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .editorial-grid--reverse .editorial-text {
    order: 1;
  }
  .editorial-grid--reverse .editorial-image-wrapper {
    order: 2;
  }
}

/* Premium Section (Third Block) */
.premium-title {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.premium-title .text-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.premium-p {
  font-size: 1.25rem;
  color: #e5d8cb;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.premium-feature {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.premium-feature:hover {
  border-top-color: var(--accent);
  background: linear-gradient(180deg, rgba(169, 124, 80, 0.05) 0%, transparent 100%);
  transform: translateY(-5px);
}

.premium-feature h3 {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
}

.premium-feature p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

.premium-image-lg {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  margin-bottom: 4rem;
}

.premium-image-lg img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.02);
}

.premium-image-lg:hover img {
  transform: scale(1.05);
}

/* Premium Portfolio Section (Fourth Block) */
.premium-portfolio-wrapper {
  margin-top: 3rem;
}

.premium-portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  text-decoration: none;
}

.premium-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.02);
}

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

.premium-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,14,14,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.premium-portfolio-card:hover .premium-portfolio-overlay {
  opacity: 1;
}

.premium-portfolio-overlay-inner {
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-portfolio-card:hover .premium-portfolio-overlay-inner {
  transform: translateY(0);
}

.premium-portfolio-title {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.premium-portfolio-desc {
  font-size: 0.95rem;
  color: #e5d8cb;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.6s ease;
  margin: 0;
}

.premium-portfolio-card:hover .premium-portfolio-desc {
  opacity: 1;
}

.premium-portfolio-meta {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(169, 124, 80, 0.3);
  z-index: 2;
}

/* Premium CTA Banner (Fifth Block) */
.premium-cta-banner {
  padding: 6rem 3rem;
  background: linear-gradient(145deg, rgba(14,14,14,0.95), rgba(17,17,17,0.85)),
              url("../img/hero.jpg") center/cover;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(169, 124, 80, 0.2);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.premium-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(169, 124, 80, 0.15), transparent 50%);
  pointer-events: none;
}

/* Premium Footer */
.premium-footer {
  padding: 6rem 0 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(169, 124, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.premium-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .premium-footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.premium-footer .brand__name {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}

.premium-footer p {
  color: #e5d8cb;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 400px;
}

.premium-footer h3 {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.premium-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-footer ul li {
  margin-bottom: 1rem;
}

.premium-footer ul a,
.premium-footer ul li {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
}

.premium-footer ul a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.premium-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.premium-footer__socials {
  display: flex;
  gap: 1.5rem;
}

.premium-footer__socials a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.premium-footer__socials a:hover {
  color: var(--accent);
}

/* =========================================
   LUXURY CONTACT PAGE STYLES
   ========================================= */

.contact-hero {
  min-height: auto;
  justify-content: flex-start;
}

.contact-hero__content {
  text-align: left;
  max-width: none;
  margin: 0;
}

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

.contact-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 1.2rem;
}

.section--contact-mesh {
  position: relative;
  background: radial-gradient(circle at right 20% top 30%, rgba(169, 124, 80, 0.05), transparent 40%),
              radial-gradient(circle at left 10% bottom 30%, rgba(255, 255, 255, 0.02), transparent 40%);
}

.contact-info-panel {
  padding: 3rem;
  border-radius: var(--radius);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-info-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: grid;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169,124,80,0.2) 0%, rgba(169,124,80,0.05) 100%);
  color: var(--accent-strong);
  flex-shrink: 0;
  border: 1px solid rgba(169,124,80,0.2);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-text strong {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-text a, .contact-text span {
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.accent-text {
  color: var(--accent);
  font-style: normal;
  font-size: 0.9rem;
}

.social-links-premium {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  transform: translateY(-3px);
}

/* Form Styles */
.contact-form-panel {
  padding: 3rem;
  border-radius: var(--radius);
  background: rgba(23, 23, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.form-segment-wrapper {
  margin-bottom: 2.5rem;
}

.form-segment-wrapper legend {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.segment-option {
  position: relative;
  cursor: pointer;
}

.segment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment-label {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.3s ease;
  user-select: none;
}

.segment-option input:checked + .segment-label {
  background: var(--surface-soft);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.luxury-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.luxury-field input,
.luxury-field textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.luxury-field textarea {
  resize: vertical;
  min-height: 120px;
}

.luxury-field label {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  background: transparent;
}

.optional-note {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.optional-note.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.luxury-field input:focus,
.luxury-field textarea:focus,
.luxury-field input:not(:placeholder-shown),
.luxury-field textarea:not(:placeholder-shown) {
  background: rgba(0,0,0,0.4);
  border-color: var(--accent);
}

.luxury-field input:focus ~ label,
.luxury-field textarea:focus ~ label,
.luxury-field input:not(:placeholder-shown) ~ label,
.luxury-field textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: var(--accent-strong);
  background: var(--bg);
  padding: 0 0.4rem;
  border-radius: 4px;
}

.field-bg {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.luxury-field input:focus ~ .field-bg,
.luxury-field textarea:focus ~ .field-bg {
  opacity: 1;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 250px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  /* Layout global */
  .grid--3, .grid--4, .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .intro-grid, .services-layout, .contact-layout, .story-layout, .cta-panel, .split-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .paired-home-grid {
    grid-template-columns: 1fr;
  }
  .project-detail__hero {
    grid-template-columns: 1fr;
  }
  .split-panel--reverse > :first-child { order: 1; }
  .split-panel--reverse > :last-child { order: 2; }
  
  /* Menu hamburger override */
  .nav {
    position: absolute;
    top: 75px;
    left: 1rem;
    right: 1rem;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all var(--transition);
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .nav__link {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .nav__link::after {
    display: none;
  }
  .nav__preview {
    display: none !important;
  }
  .menu-toggle {
    display: block;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  /* Ripristino singola colonna per tutti su mobile */
  .grid--2, .grid--3, .grid--4, .stats-band {
    grid-template-columns: 1fr;
  }
  
  .premium-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Sezioni e padding ridotti */
  .section {
    padding: 4rem 0;
  }
  .section-tight {
    padding: 2.5rem 0;
  }
  .hero {
    padding: 5rem 0 2rem;
  }
  .project-intro {
    padding: 7rem 0 1rem;
  }

  /* Testi e font-sizes ripuliti */
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .section-heading h1, .section-heading h2, .premium-title, .editorial-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .project-intro__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .brand__name {
    font-size: 1.25rem;
  }
  
  .brand__logo {
    width: 140px;
  }
  
  /* Form contatti */
  .segment-control {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .privacy-note {
    max-width: 100%;
  }

  /* Footer */
  .premium-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.spinner { width: 20px; height: 20px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.loader-hidden { display: none !important; }
.is-loading .btn-text, .is-loading .btn-icon { opacity: 0; }
.is-loading .spinner { display: block !important; }
.form-feedback { margin-top: 2rem; padding: 1.5rem; border-radius: 12px; background: rgba(169, 124, 80, 0.1); border: 1px solid rgba(169, 124, 80, 0.2); text-align: center; transition: opacity 0.4s ease, transform 0.4s ease; }
.form-feedback.is-hidden { opacity: 0; transform: translateY(10px); pointer-events: none; visibility: hidden; position: absolute; }@media (max-width: 820px) {
  .mobile-only-content { display: block !important; }
  .desktop-only-content { display: none !important; }

  .hero-mobile {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
  }
  .hero-mobile__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
  }
  .hero-mobile__content { text-align: center; }
  .hero-mobile h1 { font-size: 2.8rem; line-height: 1.1; margin: 1rem 0; }
  .hero-mobile p { color: var(--muted); margin-bottom: 2rem; }

  .carousel-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
  }
  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .carousel-slide.active { opacity: 1; }
  .carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
  .carousel-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
  }
  .maestria-section .editorial-title { font-size: 1.8rem; }
}
