/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --bg: #faf8f4;
  --ink: #1a1a1a;
  --ink-muted: #6b6560;
  --ink-faint: #a09890;
  --accent: #c9a96e;
  --accent-dark: #a8864a;
  --warm-dark: #2a1f14;
  --warm-mid: #4a3828;
  --surface: #f0ece4;
  --surface-dark: #e4ddd3;
  --hero-h: 100vh;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--warm-dark); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink-faint); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 28px 48px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
}
.nav__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,248,244,0.55);
  letter-spacing: 0.04em;
}

/* ===== HERO ===== */
.hero {
  height: var(--hero-h);
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, #3d2410 0%, #1a1a1a 40%, #0d0d0d 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 780px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,248,244,0.65);
  max-width: 520px;
  line-height: 1.65;
}
.hero__scroll {
  position: absolute;
  bottom: 48px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== SHOWCASE ===== */
.showcase { padding: 120px 0 100px; }
.showcase__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.showcase__label, .craft__label, .process__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.showcase__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 64px;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.showcase__item { overflow: hidden; }
.showcase__item--tall { grid-row: span 1; }
.showcase__img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.showcase__img--villa {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2a1f14 0%, #3d2410 35%, #6b4c28 65%, #c9a96e 100%);
  position: relative;
  overflow: hidden;
}
.showcase__img--villa::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.6) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,169,110,0.05) 60px, rgba(201,169,110,0.05) 61px);
}
.showcase__img--pool {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0d1a2d 0%, #1a3a5c 50%, #2a6080 100%);
}
.showcase__img--terrace {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2520 50%, #4a3828 100%);
}
.showcase__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
}
.showcase__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}
.showcase__detail {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ===== CRAFT ===== */
.craft { background: var(--surface); padding: 120px 0; }
.craft__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.craft__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.craft__body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 72px;
}
.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.craft__card {
  padding: 48px 40px;
  background: var(--bg);
}
.craft__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.craft__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}
.craft__card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process { padding: 120px 0; }
.process__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.process__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 72px;
}
.process__steps { display: flex; flex-direction: column; gap: 0; }
.process__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--surface-dark);
}
.process__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.process__step p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 500px;
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto { background: var(--warm-dark); padding: 120px 0; }
.manifesto__inner { max-width: 900px; margin: 0 auto; padding: 0 48px; }
.manifesto__quote {
  margin-bottom: 56px;
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}
.manifesto__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  line-height: 1.3;
}
.manifesto__body p {
  font-size: 1rem;
  color: rgba(250,248,244,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ===== CLOSING ===== */
.closing { background: var(--ink); padding: 140px 0; }
.closing__inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 32px;
}
.closing__sub {
  font-size: 1rem;
  color: rgba(250,248,244,0.55);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 80px;
}
.closing__stats {
  display: flex;
  gap: 80px;
}
.closing__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.closing__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.closing__desc {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.45);
  letter-spacing: 0.04em;
  max-width: 120px;
  line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer { background: var(--warm-dark); border-top: 1px solid rgba(201,169,110,0.15); padding: 56px 0; }
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bg);
}
.footer__location {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.4);
}
.footer__contact { display: flex; gap: 28px; }
.footer__link {
  font-size: 0.85rem;
  color: rgba(250,248,244,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--accent); }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.25);
  font-style: italic;
  font-family: var(--font-display);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero__content { padding: 0 24px 60px; }
  .hero__headline { font-size: 2.8rem; }
  .showcase__inner, .craft__inner, .process__inner, .manifesto__inner, .closing__inner, .footer__inner { padding: 0 24px; }
  .showcase__grid { grid-template-columns: 1fr; gap: 32px; }
  .showcase__img--villa { aspect-ratio: 4/3; }
  .craft__grid { grid-template-columns: 1fr; gap: 2px; }
  .process__step { grid-template-columns: 60px 1fr; gap: 20px; }
  .closing__stats { flex-direction: column; gap: 40px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.2rem; }
  .showcase__heading, .craft__heading, .process__heading { font-size: 2rem; }
  .manifesto__quote blockquote { font-size: 1.4rem; }
}
