@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #f9f7f4;
  --cream-dark: #f0ece5;
  --dark: #1c1a18;
  --mid: #5a5550;
  --light: #9a948e;
  --border: #ddd9d2;
  --accent: #b8996a;
  --accent-light: #d4b98a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: #fff;
  font-size: 15px;
  line-height: 1.85;
  overflow-x: hidden;
}

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

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.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.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 76px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 13px; letter-spacing: 0.16em; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,18,16,0.72) 0%,
    rgba(20,18,16,0.2) 50%,
    rgba(20,18,16,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 760px;
  color: #fff;
}

.hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 28px 64px; }
  .hero-scroll { display: none; }
}

/* ─── MARQUEE BAND ─── */
.marquee-band {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 36px;
}

.marquee-dot {
  color: var(--accent);
  padding: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 110px 52px; }

.section-inner { max-width: 1120px; margin: 0 auto; }

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ─── SERVICES PREVIEW (home) ─── */
.services-section { background: var(--cream); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.services-intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: #fff;
  padding: 48px 40px;
  transition: background 0.3s;
}

.service-card:hover { background: var(--cream-dark); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.service-card p {
  color: var(--mid);
  font-size: 13.5px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── ABOUT PREVIEW (home) ─── */
.about-section { background: #fff; }

.about-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-main {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-photo-main img {
  transition: transform 0.8s ease;
}
.about-photo-main:hover img { transform: scale(1.04); }

.about-photo-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 48%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 6px solid #fff;
}

.about-text { padding: 20px 0; }

.divider {
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin: 24px 0 32px;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 60px; }
  .about-photo-accent { display: none; }
}

/* ─── PHOTO GRID ─── */
.photo-grid-section {
  padding: 0;
  background: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 380px 260px;
  gap: 4px;
}

.photo-grid-item {
  overflow: hidden;
  position: relative;
}

.photo-grid-item img {
  transition: transform 0.7s ease;
}
.photo-grid-item:hover img { transform: scale(1.06); }

.photo-grid-item.large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.photo-grid-item.tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .photo-grid-item.large { grid-column: 1 / 3; grid-row: 1; }
  .photo-grid-item.tall { grid-column: 1; grid-row: 2 / 4; }
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--dark);
  padding: 110px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'EG';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 260px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,0.55);
  margin: 0 auto 44px;
  max-width: 440px;
  position: relative;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  border: 1.5px solid currentColor;
  color: var(--dark);
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
}

.btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-light {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-light:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

/* ─── FOOTER ─── */
footer {
  padding: 52px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--dark); }

.social-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.social-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--dark); }

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
  color: var(--light);
  padding-top: 20px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .social-links { justify-content: center; }
  .footer-links { justify-content: center; }
}

/* ─── PAGE HERO ─── */
.page-hero {
  margin-top: 76px;
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.75) 0%, rgba(20,18,16,0.15) 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 60px;
  color: #fff;
}

.page-hero-content .section-label { color: var(--accent-light); }

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .page-hero-content { padding: 0 24px 48px; }
}

/* ─── SERVICES PAGE ─── */
.services-intro-text {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 52px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-full-list {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 52px 100px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; padding-bottom: 0; }

.service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 6px;
}

.service-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.service-row p {
  color: var(--mid);
  font-size: 14px;
  line-height: 1.9;
  max-width: 560px;
}

.services-photo-break {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.services-photo-break img {
  object-position: center 40%;
  transition: transform 12s ease;
}
.services-photo-break:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .services-intro-text { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .services-full-list { padding: 0 24px 80px; }
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-row-num { font-size: 36px; }
}

/* ─── ABOUT PAGE ─── */
.about-hero-section {
  margin-top: 76px;
  padding: 100px 52px;
  background: var(--cream);
}

.about-hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}

.about-hero-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.about-hero-photo img { transition: transform 0.8s ease; }
.about-hero-photo:hover img { transform: scale(1.04); }

.about-hero-text { padding: 10px 0 60px; }

.about-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-hero-text p {
  color: var(--mid);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.95;
}

.about-secondary {
  padding: 100px 52px;
  background: var(--dark);
  color: #fff;
}

.about-secondary-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 80px;
  align-items: center;
}

.about-secondary h2 { color: #fff; }
.about-secondary p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.about-secondary .section-label { color: var(--accent-light); }
.about-secondary .divider { background: var(--accent-light); }

.about-secondary-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
}

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-photo { position: static; aspect-ratio: 4/3; }
  .about-secondary-inner { grid-template-columns: 1fr; }
  .about-secondary-photo { aspect-ratio: 4/3; order: -1; }
  .about-hero-section { padding: 80px 24px; }
  .about-secondary { padding: 80px 24px; }
}

/* ─── CONTACT PAGE ─── */
.contact-section {
  margin-top: 76px;
  padding: 100px 52px;
}

.contact-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-form-wrap .lead { margin-bottom: 44px; }

.contact-form { display: flex; flex-direction: column; gap: 28px; }

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

.form-group { display: flex; flex-direction: column; gap: 10px; }

.form-group label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--accent); }

.form-group textarea { min-height: 120px; resize: none; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a948e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: #f0f5f0;
  border-left: 3px solid #5a8a5a;
  color: #2d5a2d;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
}

.contact-aside { padding-top: 80px; }

.contact-aside-block { margin-bottom: 48px; }

.contact-aside-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
  display: block;
}

.contact-aside a {
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.contact-aside a:hover { color: var(--accent); }

.contact-aside .social-links { flex-direction: column; align-items: flex-start; gap: 12px; }
.contact-aside .social-links a { font-size: 13px; letter-spacing: 0.05em; text-transform: none; }

.contact-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-aside { padding-top: 0; }
  .contact-photo { aspect-ratio: 4/3; margin-top: 32px; }
  .contact-section { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 80px 24px; }
}
