/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-weight: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
  --cream: #FAF7F2;
  --dark: #1A1A18;
  --text: #3D3B38;
  --bronze: #8B6F47;
  --green: #4A5E3B;
  --press-bg: #F0EBE3;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --container: 1200px;
  --side-pad: 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

p {
  max-width: 65ch;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

.section {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--bronze);
  color: #fff;
}

.btn-primary:hover {
  background: #7a6140;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.btn-outline {
  border: 1px solid var(--bronze);
  color: var(--bronze);
  background: transparent;
}

.btn-outline:hover {
  background: var(--bronze);
  color: #fff;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ============================================
   GLOBAL FOCUS-VISIBLE
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: filter 0.4s ease;
}

.nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav:not(.scrolled) .nav-links a:hover {
  color: #fff;
}

.nav.scrolled .nav-links a {
  color: var(--text);
}

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

.nav-links a:focus-visible {
  outline-color: var(--bronze);
}

.nav:not(.scrolled) .nav-links a:focus-visible {
  outline-color: #fff;
}

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

.lang-switcher {
  display: flex;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
}

.lang-switcher button {
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

.nav:not(.scrolled) .lang-switcher button {
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav:not(.scrolled) .lang-switcher button.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav.scrolled .lang-switcher button {
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.nav.scrolled .lang-switcher button.active {
  color: var(--bronze);
  background: rgba(139, 111, 71, 0.08);
  border-color: var(--bronze);
}

.lang-switcher button+button {
  border-left: none;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.nav:not(.scrolled) .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.nav:not(.scrolled) .nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.nav.scrolled .nav-cta {
  background: var(--bronze);
  color: #fff;
}

.nav.scrolled .nav-cta:hover {
  background: #7a6140;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  transition: all 0.3s;
}

.nav:not(.scrolled) .hamburger span {
  background: #fff;
}

.nav.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
  background: var(--dark) !important;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
  background: var(--dark) !important;
}

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--bronze);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero overlay gradient for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(26, 26, 24, 0.7) 0%,
      rgba(26, 26, 24, 0.3) 40%,
      transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Hero content — overlaid on video */
.hero-content {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
}

.hero-content .hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-content .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Scroll indicator — white over video */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* HERO INTRO — text section below video */
.hero-intro {
  background: var(--cream);
  padding: 5rem 0 6rem;
}

.hero-intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-intro-line {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 1.5rem;
}

.hero-intro .hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.hero-intro h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-intro .hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2.8rem;
  max-width: 580px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.02rem;
}

.about-details {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.about-detail {
  width: 90px;
  height: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-detail:hover img {
  transform: scale(1.1);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 0;
}

.gallery-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-duo-item {
  overflow: hidden;
  height: min(70vh, 500px);
  min-height: 400px;
}

.gallery-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.7s ease;
}

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

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: auto auto auto;
  gap: 8px;
  margin-top: 8px;
}

.gallery-masonry .gm-item {
  overflow: hidden;
}

.gallery-masonry .gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.7s ease;
}

.gallery-masonry .gm-item:hover img {
  transform: scale(1.03);
}

.gm-1 {
  grid-column: 1 / 5;
  grid-row: 1;
  height: 50vh;
  min-height: 300px;
}

.gm-2 {
  grid-column: 5 / 8;
  grid-row: 1;
  height: 50vh;
  min-height: 300px;
}

.gm-3 {
  grid-column: 8 / 11;
  grid-row: 1;
  height: 50vh;
  min-height: 300px;
}

.gm-4 {
  grid-column: 1 / 4;
  grid-row: 2;
  height: 50vh;
  min-height: 300px;
}

.gm-5 {
  grid-column: 4 / 7;
  grid-row: 2;
  height: 50vh;
  min-height: 300px;
}

.gm-6 {
  grid-column: 7 / 11;
  grid-row: 2;
  height: 50vh;
  min-height: 300px;
}

.gm-7 {
  grid-column: 1 / 11;
  grid-row: 3;
  height: 50vh;
  min-height: 350px;
}

/* ============================================
   MODELS
   ============================================ */
.models-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.model-card {
  background: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.model-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.model-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.model-card:hover .model-card-image img {
  transform: scale(1.05);
}

.model-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bronze);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
}

.model-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.model-card-body .btn {
  margin-top: auto;
}

.model-card-body h3 {
  margin-bottom: 0.4rem;
}

.model-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.model-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.model-specs {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.model-specs span {
  display: inline;
}


/* ============================================
   BENEFITS (DARK)
   ============================================ */
.benefits {
  background: var(--dark);
  color: var(--cream);
}

.benefits .section-label {
  color: rgba(139, 111, 71, 0.9);
}

.benefits h2 {
  color: var(--cream);
  margin-bottom: 3.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

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

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--bronze);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.benefit-desc {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.6;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.project-card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.5), transparent);
  pointer-events: none;
}

.project-card-body {
  padding: 1.5rem;
}

.project-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.project-card-meta {
  font-size: 0.82rem;
  color: #999;
  letter-spacing: 0.04em;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  background: var(--press-bg);
}

.team-header {
  text-align: center;
  margin-bottom: 1.0rem;
}

.team-header p.section-subtitle {
  max-width: 600px;
  margin: 0.5rem auto 0;
  color: var(--text);
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.team-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.team-members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.team-monogram {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--bronze);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: var(--dark);
}

.team-member-info p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.team-member-info .team-aka {
  font-style: italic;
  color: var(--bronze);
  font-size: 0.85rem;
}

.team-workshops {
  border-top: 1px solid var(--bronze);
  padding-top: 2.5rem;
}

.team-workshops-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--bronze);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.team-workshops-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-workshop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.team-workshop-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--bronze);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-workshop-item span {
  font-size: 0.85rem;
  color: var(--text);
}

/* ============================================
   PRESS
   ============================================ */
.press {
  background: var(--press-bg);
}

.press-header {
  text-align: center;
  margin-bottom: 3rem;
}

.press-featured-quote {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
  position: relative;
}

.press-featured-quote::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--bronze);
  opacity: 0.2;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.press-featured-quote blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.press-featured-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.press-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.press-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.press-card:hover .press-card-image img {
  transform: scale(1.05);
}

.press-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.press-card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  background: rgba(26, 26, 24, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}

.press-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.press-card-source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.press-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  flex: 1;
}

.press-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bronze);
  margin-top: auto;
}

.press-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.press-card:hover .press-card-cta svg {
  transform: translateX(4px);
}

/* ============================================
   VIRTUAL TOUR
   ============================================ */
.virtual-tour {
  background: var(--cream);
}

.virtual-tour-header {
  text-align: center;
  margin-bottom: 3rem;
}

.virtual-tour-embed {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: var(--dark) url('../images/gallery-03.jpg') center / cover no-repeat;
}

.virtual-tour-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-title {
  margin-bottom: 0.6rem;
}

.contact-subtitle {
  margin-bottom: 3rem;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.12);
  background: #fff;
}

.contact-form-group input:focus-visible,
.contact-form-group textarea:focus-visible,
.contact-form-group select:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 1px;
}

.contact-form-group select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B6F47' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.contact-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--bronze);
}

.contact-checkbox label {
  font-size: 0.85rem;
  color: #666;
  text-transform: none;
  letter-spacing: 0;
}

.contact-checkbox label a {
  color: var(--bronze);
  text-decoration: underline;
}

.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-inner {
  background: var(--dark);
  padding: 3rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-info-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../images/gallery-06.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--bronze);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item span {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}

.contact-social {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 247, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact-social:hover {
  border-color: var(--bronze);
  background: rgba(139, 111, 71, 0.15);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  stroke: rgba(250, 247, 242, 0.85);
  fill: none;
  stroke-width: 1.5;
  margin: 0;
}

/* Placeholder styling */
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #bbb;
  font-weight: 300;
  font-style: italic;
}

/* Submit button arrow micro-interaction */
.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Submit button animation states */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes checkDraw {
  from {
    stroke-dashoffset: 24;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

.btn-primary.btn-sending {
  opacity: 0.85;
  pointer-events: none;
}

.btn-primary.btn-sending svg {
  animation: spin 0.8s linear infinite;
  transform: none;
}

.btn-primary.btn-success {
  background: rgba(74, 94, 59, 0.15);
  border-color: var(--green);
  color: var(--green);
}

.btn-primary.btn-success svg {
  animation: checkDraw 0.4s ease forwards;
  transform: none;
}

.btn-primary.btn-error {
  animation: shake 0.4s ease;
}

/* Form message entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(250, 247, 242, 0.5);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.3);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--bronze);
}

.footer-bar {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bar a {
  color: rgba(250, 247, 242, 0.4);
  transition: color 0.3s;
}

.footer-bar a:hover {
  color: var(--bronze);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

  .about-image img {
    height: 450px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }

  .models-grid,
  .projects-grid {
    gap: 1.5rem;
  }

  .model-card-image {
    height: 220px;
  }

  .contact-grid {
    gap: 3rem;
  }

  /* Team */
  .team-grid {
    gap: 2.5rem;
  }

  .team-workshops-row {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --side-pad: 1.4rem;
  }

  .section {
    padding: 4rem 0;
  }

  /* Nav mobile */
  .nav-links,
  .nav-right .lang-switcher,
  .nav-right .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    bottom: 3rem;
  }

  .hero-scroll {
    display: none;
  }

  /* Hero intro mobile */
  .hero-intro {
    padding: 3rem 0 4rem;
  }

  .hero-intro-content {
    text-align: left;
    align-items: flex-start;
  }

  .hero-intro .hero-subtitle {
    margin-bottom: 2rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image img {
    height: 380px;
  }

  .about-details {
    margin-top: 2rem;
  }

  .about-detail {
    width: 72px;
    height: 72px;
  }

  /* Gallery */
  .gallery-duo {
    grid-template-columns: 1fr;
  }

  .gallery-duo-item {
    height: 50vh;
    min-height: 280px;
  }

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

  .gm-1,
  .gm-2,
  .gm-3,
  .gm-4,
  .gm-5,
  .gm-6,
  .gm-7 {
    grid-column: 1 !important;
    grid-row: auto !important;
    height: 35vh;
    min-height: 260px;
  }

  .gallery-duo,
  .gallery-masonry {
    gap: 6px;
  }

  .gallery-masonry {
    margin-top: 6px;
  }

  /* Models */
  .models-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .model-card-image {
    height: 260px;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .team-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .team-members {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .team-member {
    justify-content: flex-start;
  }

  /* Press */
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .press-featured-quote blockquote {
    font-size: 1.2rem;
  }

  .press-card-body {
    padding: 1.25rem;
  }

  /* Virtual Tour */
  .virtual-tour-embed {
    aspect-ratio: 4 / 3;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Lightbox mobile */
  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 12px;
  }

  .lightbox-close {
    font-size: 2rem;
    top: 12px;
    right: 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero-intro .hero-subtitle {
    font-size: 1rem;
  }

  .gallery-duo-item {
    height: 40vh;
    min-height: 240px;
  }

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

  /* Virtual Tour — keep 4/3 from 768px, no further change at 480px */

  /* Team */
  .team-workshops-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--bronze);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--bronze);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-item.open .faq-answer {
  max-height: 1000px;
}

.faq-item.open {
  background: rgba(139, 111, 71, 0.03);
}

/* Form message */
.form-message {
  display: none;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 4px;
  animation: fadeInUp 0.3s ease;
}

.form-message.success {
  background: rgba(74, 94, 59, 0.1);
  color: var(--green);
  border: 1px solid rgba(74, 94, 59, 0.2);
}

.form-message.error {
  background: rgba(180, 60, 60, 0.1);
  color: #b43c3c;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

/* Mobile lang switcher in mobile menu */
.mobile-lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mobile-lang-switcher .lang-btn {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-lang-switcher .lang-btn.active {
  color: var(--bronze);
  background: rgba(139, 111, 71, 0.08);
  border-color: var(--bronze);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.gallery-thumb {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  z-index: 2001;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--bronze);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  z-index: 2001;
  transition: color 0.2s;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--bronze);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--dark);
  color: rgba(250, 247, 242, 0.85);
  padding: 1.2rem 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-inner p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.5rem 1.4rem;
  font-size: 0.82rem;
}

/* ============================================
   UTILITY — CSP-safe replacements
   ============================================ */
.press-card-disabled {
  cursor: default;
  pointer-events: none;
}

.honeypot {
  display: none;
}