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

:root {
  --off-white: #f9f7f4;
  --dark: #1a1814;
  --mid: #5a5550;
  --accent: #c9a96e;
  --line: rgba(26,24,20,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--off-white); color: var(--dark); overflow-x: hidden; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(249,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: 0.08em;
}
.nav-logo em { color: var(--accent); font-style: normal; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--mid); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark);
  color: var(--off-white);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 100vh;
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}

.hg-item { background-size: cover; background-position: center; transition: transform 0.6s; }
.hg-item:hover { transform: scale(1.02); }
.hg-tall { grid-row: span 2; }
.hg-wide { grid-column: span 2; }

.hero-text {
  padding: 4rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--line);
  background: var(--off-white);
}

.hero-text h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.8rem;
}
.hero-text h1 em { color: var(--accent); }

.hero-text p { color: var(--mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 2.5rem; }

.btn-line {
  display: inline-block;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-line:hover { color: var(--accent); border-color: var(--accent); }

/* SERVICES */
.services { padding: 7rem 4rem; }
.s-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.services h2, .about h2, .contact-left h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3rem;
}

.services-row { display: flex; flex-direction: column; gap: 0; max-width: 900px; }
.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  gap: 2rem;
  align-items: start;
  transition: background 0.2s;
}
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-num { font-family: 'EB Garamond', serif; font-size: 2rem; color: rgba(26,24,20,0.15); font-style: italic; }
.svc-item h3 { font-family: 'EB Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 0.6rem; }
.svc-item p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 0.7rem; }
.svc-price { font-size: 0.85rem; color: var(--accent); font-weight: 500; }

/* PORTFOLIO */
.portfolio { padding: 7rem 4rem; background: var(--dark); }
.port-filter { display: flex; gap: 0; margin-bottom: 2.5rem; border: 1px solid rgba(249,247,244,0.1); display: inline-flex; }
.pf-btn { padding: 0.6rem 1.5rem; background: none; border: none; font-family: 'Outfit', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,247,244,0.4); cursor: pointer; border-right: 1px solid rgba(249,247,244,0.1); transition: all 0.2s; }
.pf-btn:last-child { border-right: none; }
.pf-btn.active, .pf-btn:hover { color: var(--dark); background: var(--accent); }

.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 4px;
}

.port-item {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; cursor: pointer;
  transition: opacity 0.4s;
}
.port-item.hidden { display: none; }
.port-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(26,24,20,0.7));
  color: rgba(249,247,244,0.8);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.port-item:hover span { opacity: 1; }
.port-item:hover { opacity: 0.9; }
.port-tall { grid-row: span 2; }
.port-wide { grid-column: span 2; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.about-img { background-size: cover; background-position: center top; }
.about-text { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.about-text p { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.2rem; }
.about-awards { margin-top: 1.5rem; border-top: 1px solid var(--line); padding-top: 1.5rem; }
.about-awards div { font-size: 0.82rem; color: var(--mid); padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.about-awards strong { color: var(--accent); margin-right: 0.8rem; }

/* CONTACT */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; padding: 7rem 4rem; gap: 6rem; align-items: start; }
.contact-left > p { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.c-info div { font-size: 0.85rem; color: var(--mid); margin-bottom: 0.7rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-bottom: 1px solid rgba(26,24,20,0.3);
  background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; color: var(--dark);
  outline: none; resize: vertical;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }

.btn-dark {
  display: inline-block;
  background: var(--dark); color: var(--off-white);
  padding: 0.9rem 2rem;
  border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--accent); }
#contact-msg { color: var(--accent); font-size: 0.85rem; }

/* FOOTER */
.footer { background: var(--dark); padding: 3rem 4rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.footer div { font-family: 'EB Garamond', serif; font-size: 1.5rem; color: var(--off-white); }
.footer em { color: var(--accent); font-style: normal; }
.footer p { color: rgba(249,247,244,0.3); font-size: 0.78rem; }
.footer a { color: var(--accent); text-decoration: none; }

@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; grid-template-rows: 60vh auto; }
  .hero-text { padding: 3rem 1.5rem; border-left: none; border-top: 1px solid var(--line); }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .services, .contact-section { padding: 4rem 1.5rem; }
  .portfolio { padding: 4rem 1.5rem; }
  .port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .port-tall, .port-wide { grid-row: span 1; grid-column: span 1; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 350px; }
  .about-text { padding: 3rem 1.5rem; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .footer { padding: 2rem 1.5rem; }
}