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

:root {
  --taupe:   #7a6548;
  --taupe2:  #8b7355;
  --taupe3:  #a08860;
  --dark:    #1a1510;
  --card:    #f5ede0;
  --cream:   #faf5ed;
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --red:     #c0392b;
  --text:    #1a1510;
  --textlt:  #4a3f30;
  --muted:   #7a6a58;
  --border:  rgba(201,168,76,.35);
}

html { scroll-behavior: smooth; }

body {
  background: var(--taupe2);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── DIAMOND DIVIDER ── */
.diamond-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.diamond-divider span {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 4rem;
  background: rgba(26,21,16,.0);
  backdrop-filter: blur(2px);
  transition: background .3s, padding .3s;
}

nav.scrolled {
  background: rgba(26,21,16,.96);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

nav .logo img {
  height: 104px;
  transition: height .3s ease;
}

nav.scrolled .logo img { height: 52px; }

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

nav ul a {
  text-decoration: none;
  color: rgba(245,237,224,.7);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .25s;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(26,21,16,.65) 0%, rgba(26,21,16,.5) 60%, rgba(122,101,72,.8) 100%),
              url('images/project-office.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 40%, rgba(201,168,76,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .5;
}

.hero-eyebrow {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--cream);
  max-width: 700px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 em {
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  letter-spacing: .02em;
}

.hero-tagline {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.hero-sub {
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(245,237,224,.7);
  max-width: 460px;
  margin-bottom: 2.8rem;
  line-height: 1.9;
}

.cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.4rem;
}

.hero-social-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(245,237,224,1);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s;
}

.hero-social-link:hover { color: var(--gold2); }

.hero-social-sep {
  color: rgba(245,237,224,.6);
  font-size: .85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,168,76,.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,237,224,1);
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── SECTION COMMONS ── */
.section-label {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── WHO WE ARE ── */
.who {
  background: var(--taupe2);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.who .section-title { color: var(--gold); margin-bottom: 0; }

.who-tagline {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 2;
  margin-top: 1.5rem;
  max-width: 320px;
}

/* Arched photo frame */
.arch-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.arch-frame-inner {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  border: 2px solid var(--gold);
  aspect-ratio: 3/4;
  background: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,.3);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.arch-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── OUR JOURNEY ── */
.journey {
  background: linear-gradient(rgba(26,21,16,.7), rgba(26,21,16,.7)),
              url('images/project-arch.jpg') center/cover no-repeat;
  padding: 7rem 4rem;
  position: relative;
}

.journey-card {
  background: var(--cream);
  border: 1px solid var(--gold);
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  text-align: center;
  position: relative;
}

.journey-card::before,
.journey-card::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .6;
}

.journey-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.journey-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.journey-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.journey-card p {
  font-size: .82rem;
  color: var(--textlt);
  margin-bottom: 2rem;
}

.journey-locations {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
}

.journey-loc {
  flex: 1;
  padding: 1rem;
  border-right: 1px solid rgba(122,101,72,.3);
  text-align: center;
}

.journey-loc:last-child { border-right: none; }

.journey-loc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
}

.journey-loc-sub {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

.journey-loc.highlight .journey-loc-name { color: var(--gold); font-weight: 600; }

/* ── WHAT WE DO ── */
.services {
  background: var(--taupe2);
  padding: 7rem 4rem;
  text-align: center;
}

.services .section-title { color: var(--cream); margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  background: transparent;
  border: 1px solid var(--gold);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: background .3s;
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .5;
}

.service-card::before { top: 4px; left: 4px; border-width: 1px 0 0 1px; }
.service-card::after  { bottom: 4px; right: 4px; border-width: 0 1px 1px 0; }

.service-card:hover { background: rgba(201,168,76,.06); }

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--gold);
  opacity: .8;
}

.service-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: .8rem 0;
}

.service-dot::before,
.service-dot::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: .5;
}

.service-dot span {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.service-name {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--cream);
  padding: 7rem 4rem;
  text-align: center;
}

.portfolio .section-title { color: var(--taupe2); margin-bottom: 3rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--gold);
  opacity: 0.95;
  transition: opacity .3s, transform .3s;
}

.portfolio-item:hover {
  opacity: 1;
  transform: scale(1.02);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── WHY CHOOSE ── */
.why {
  background: var(--taupe2);
  padding: 7rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.2);
}

.why .section-title { color: var(--gold); margin-bottom: .5rem; }

.why-sub {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 3rem;
  opacity: .7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.why-card {
  border: 1px solid var(--gold);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background .3s;
}

.why-card::before,
.why-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .5;
}

.why-card::before { top: 4px; left: 4px; border-width: 1px 0 0 1px; }
.why-card::after  { bottom: 4px; right: 4px; border-width: 0 1px 1px 0; }

.why-card:hover { background: rgba(201,168,76,.06); }

.why-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--gold);
  opacity: .75;
}

.why-name {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}

/* ── PROCESS ── */
.process {
  background: linear-gradient(rgba(26,21,16,.72), rgba(26,21,16,.72)),
              url('images/project-reception.jpg') center/cover no-repeat;
  padding: 7rem 4rem;
  position: relative;
}

.process-card {
  background: var(--cream);
  border: 1px solid var(--gold);
  max-width: 600px;
  margin: 0 auto 4rem;
  padding: 2.5rem 3rem;
  text-align: center;
  position: relative;
}

.process-card::before,
.process-card::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .6;
}

.process-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.process-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.process-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.process-card p {
  font-size: .8rem;
  color: var(--textlt);
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.process-step-icon {
  width: 32px; height: 32px;
  color: var(--gold);
}

.process-step-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--textlt);
}

.process-sep {
  width: 1px;
  height: 32px;
  background: rgba(122,101,72,.4);
}

/* ── ABOUT STATS ── */
.stats-bar {
  background: var(--dark);
  padding: 3rem 4rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,237,224,.5);
  margin-top: .3rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--taupe2);
  padding: 7rem 4rem;
  text-align: center;
}

.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 14px; height: 14px; color: var(--gold); }

.contact-detail-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--cream);
}

.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.contact-detail-value a:hover { color: var(--gold); }

/* Form */
form { display: flex; flex-direction: column; gap: 1rem; }

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

input, textarea, select {
  background: rgba(26,21,16,.4);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--cream);
  padding: .85rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: rgba(245,237,224,.35); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; cursor: pointer; color: rgba(245,237,224,.35); }
select:focus { color: var(--cream); }
option { background: #2a2010; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 2rem 4rem;
  border-top: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(245,237,224,.35);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--gold);
  opacity: .8;
}

.footer-social { display: flex; gap: 1.2rem; }

.footer-social a {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,237,224,.4);
  text-decoration: none;
  transition: color .2s;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeInUp .8s .1s both; }
h1             { animation: fadeInUp .8s .3s both; }
.hero-tagline  { animation: fadeInUp .8s .45s both; }
.hero-sub      { animation: fadeInUp .8s .5s both; }
.cta-group     { animation: fadeInUp .8s .65s both; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(245,237,224,.9);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

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

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(26,21,16,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

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

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.mobile-menu-nav a {
  text-decoration: none;
  color: rgba(245,237,224,.85);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .08em;
  transition: color .2s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero, .who, .journey, .services, .why, .process, .contact, .stats-bar, .portfolio, footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .who { grid-template-columns: 1fr; gap: 3rem; }
  .arch-frame { max-width: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
  .services-grid, .why-grid, .portfolio-grid { grid-template-columns: 1fr; max-width: 400px; }
  .scroll-hint { left: 2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .journey-locations { flex-direction: column; gap: 1rem; }
  .journey-loc { border-right: none; border-bottom: 1px solid rgba(122,101,72,.3); }
  .journey-loc:last-child { border-bottom: none; }
}
