@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Theme Variables ─────────────────────────────────────────── */
:root {
  --gold:        #C4A45A;
  --gold-light:  #D9BC80;
  --gold-dark:   #9C7D38;
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       80px;
}

[data-theme="light"] {
  --bg:          #F5F2EC;
  --bg-alt:      #EDEAE1;
  --bg-card:     #FFFFFF;
  --text:        #1A1714;
  --text-2:      #4A4540;
  --text-3:      #7A746D;
  --border:      rgba(26,23,20,0.12);
  --shadow:      0 4px 30px rgba(26,23,20,0.08);
  --shadow-lg:   0 20px 60px rgba(26,23,20,0.12);
  --overlay:     rgba(15,13,10,0.45);
  --nav-bg:      rgba(245,242,236,0.9);
  --grain-op:    0.035;
}

[data-theme="dark"] {
  --bg:          #0E0D0B;
  --bg-alt:      #161410;
  --bg-card:     #1C1A16;
  --text:        #F0EDE6;
  --text-2:      #C4BFB5;
  --text-3:      #7A7469;
  --border:      rgba(240,237,230,0.1);
  --shadow:      0 4px 30px rgba(0,0,0,0.3);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --overlay:     rgba(8,7,5,0.55);
  --nav-bg:      rgba(14,13,11,0.92);
  --grain-op:    0.06;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-op);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ── Layout Helpers ──────────────────────────────────────────── */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--alt { background: var(--bg-alt); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #0E0D0B;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,164,90,0.35);
}

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Gold divider ────────────────────────────────────────────── */
.gold-line {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin-block: 1.5rem;
}

/* ── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Selection ───────────────────────────────────────────────── */
::selection { background: var(--gold); color: #0E0D0B; }

/* ── Nav Styles ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 0.78rem;
}
.nav__logo-text strong {
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}
.nav__logo-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
  flex-shrink: 0;
}
.lang-switch {
  position: relative;
}
.lang-switch__current {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  user-select: none;
}
.lang-switch__current:hover { color: var(--gold); border-color: var(--gold); }
.lang-switch__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: all var(--transition);
  min-width: 110px;
}
.lang-switch:hover .lang-switch__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-switch__option {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
}
.lang-switch__option:hover { background: var(--bg-alt); color: var(--gold); }
.theme-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-3);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.theme-btn:hover { color: var(--gold); border-color: var(--gold); }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
  position: relative;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-card);
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1000;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__langs {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.mobile-menu__langs a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--transition);
}
.mobile-menu__langs a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .nav__inner { gap: 1rem; }
  .nav__links { display: none; }
  .nav__controls { margin-left: auto; gap: 0.75rem; }
  .nav__logo-text { font-size: 0.7rem; }
  .nav__logo-text em { font-size: 0.65rem; }
  .hamburger  { display: flex; }
}
@media (max-width: 480px) {
  .nav__logo-text { display: none; }
  .nav__inner { padding-inline: 1rem; }
}

/* ── Hero Styles ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,7,5,0.85) 0%,
    rgba(8,7,5,0.5) 50%,
    rgba(8,7,5,0.2) 100%
  );
}
.hero__line {
  position: absolute;
  top: 0; left: 0;
  width: 3px !important;
  height: 45% !important;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin-left: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  animation: lineDrop 1.4s ease 0.3s both;
}
@keyframes lineDrop {
  from { height: 0; opacity: 0; }
  to   { height: 45%; opacity: 1; }
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  animation: fadeUp 0.8s ease 0.2s both;
  margin-bottom: 2rem;
  padding: 0.4rem 0.8rem;
  margin-left: -0.8rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: fit-content;
  border-radius: 2px;
  color: #F0EDE6;
}
.hero__h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  color: #F0EDE6;
  line-height: 1.0;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: 1.75rem;
}
.hero__line-0 { animation: fadeUp 0.8s ease 0.35s both; }
.hero__line-1 {
  animation: fadeUp 0.8s ease 0.5s both;
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  max-width: 48ch;
  color: rgba(240,237,230,0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.65s both;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.8s both;
}
.btn--ghost {
  border-color: rgba(240,237,230,0.35);
  color: #F0EDE6;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s ease 1.2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite 0.5s;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

/* ── About Styles ───────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about__img-main {
  width: 82%;
  height: 75%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.about__img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about__img-main:hover img { transform: scale(1.04); }
.about__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 48%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
}
.about__img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about__img-accent:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  top: 12%;
  right: -5%;
  background: var(--gold);
  color: #0E0D0B;
  padding: 1.2rem 1.4rem;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.2;
}
.about__badge-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}
.about__h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}
.about__h2 .accent {
  color: var(--gold);
  font-style: italic;
}
.about__p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about__stat-num {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 500px; margin: 0 auto; }
  .about__badge { right: 0; }
}

/* ── Services Styles ────────────────────────────────────────── */
.services__header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.services__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--text);
}
.services__sub {
  color: var(--text-3);
  font-size: 0.97rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  position: relative;
  background: var(--bg-alt);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__bar { transform: scaleX(1); }
.service-card:hover .service-card__icon { color: var(--gold); border-color: var(--gold); }
.service-card__icon {
  position: relative;
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card__num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-card__num { color: rgba(196,164,90,0.15); }
.service-card__title {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  position: relative;
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.75;
}
.service-card__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* ── Portfolio Styles ───────────────────────────────────────── */
.portfolio__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.portfolio__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
}
.portfolio__sub {
  max-width: 60ch;
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: right;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 1rem;
}
.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.portfolio__item--wide:nth-child(1) { grid-column: span 7; grid-row: span 1; }
.portfolio__item--tall:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.portfolio__item--normal:nth-child(3) { grid-column: span 4; grid-row: span 1; }
.portfolio__item--normal:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.portfolio__item--wide:nth-child(5)  { grid-column: span 7; grid-row: span 1; }
.portfolio__img-wrap {
  width: 100%; height: 100%;
  overflow: hidden;
}
.portfolio__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__item:hover img { transform: scale(1.07); }
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,5,0.9) 0%, rgba(8,7,5,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }
.portfolio__info { color: #F0EDE6; }
.portfolio__loc {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.portfolio__title {
  font-size: 1.35rem;
  font-weight: 300;
  color: #F0EDE6;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.portfolio__view {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(240,237,230,0.7);
  transition: color var(--transition);
}
.portfolio__item:hover .portfolio__view { color: var(--gold); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,7,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(240,237,230,0.2);
  border-radius: 50%;
  color: rgba(240,237,230,0.7);
  transition: all var(--transition);
  z-index: 2001;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__inner {
  max-width: min(900px, 90vw);
  width: 100%;
  transform: scale(0.95);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox__inner { transform: scale(1); }
.lightbox__inner img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__caption { padding: 1.25rem 0.5rem 0; }
.lightbox__caption .eyebrow { margin-bottom: 0.4rem; }
#lightboxTitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #F0EDE6;
}
@media (max-width: 900px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
  }
  .portfolio__item--wide:nth-child(1),
  .portfolio__item--tall:nth-child(2),
  .portfolio__item--normal:nth-child(3),
  .portfolio__item--normal:nth-child(4),
  .portfolio__item--wide:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    height: 260px;
  }
  .portfolio__item--wide:nth-child(1),
  .portfolio__item--wide:nth-child(5) { grid-column: span 2; }
  .portfolio__overlay { opacity: 1; }
}
@media (max-width: 500px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--wide:nth-child(1),
  .portfolio__item--wide:nth-child(5) { grid-column: span 1; }
  .portfolio__sub { text-align: left; }
}

/* ── Contact Styles ─────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.contact__h2 .accent { color: var(--gold); font-style: italic; }
.contact__sub {
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__detail-icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact__detail > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-3);
}
.contact__detail-value {
  font-size: 0.95rem;
  color: var(--text-2);
  transition: color var(--transition);
}
a.contact__detail-value:hover { color: var(--gold); }
.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.75rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.form-group:focus-within label { color: var(--gold); }
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 0.6rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); font-size: 0.88rem; }
.form-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.form-group:focus-within .form-line { width: 100%; }
.contact__submit { margin-top: 0.5rem; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(196,164,90,0.1);
  border: 1px solid rgba(196,164,90,0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-success.show { display: flex; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Footer Styles ──────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer__top { padding: clamp(3rem, 5vw, 5rem) 0 clamp(2.5rem, 4vw, 4rem); }
.footer__top-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.footer__logo img { width: 48px; height: 48px; object-fit: contain; }
.footer__logo-text { display: flex; flex-direction: column; gap: 0.2rem; }
.footer__logo-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.footer__logo-text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.footer__nav a:hover { color: var(--gold); }
.footer__langs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__lang {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer__lang:hover, .footer__lang.active { color: var(--gold); }
.footer__lang.active { font-weight: 600; }
.footer__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.footer__bottom { padding: 1.5rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer__legal a { transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold); }
@media (max-width: 640px) {
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
