:root {
  --bg: #F9F6F0;
  --surface: #FFFFFF;
  --charcoal: #1C1C1E;
  --amber: #C8956C;
  --amber-dark: #A67347;
  --green: #1E3A2F;
  --green-mid: #2D5240;
  --text: #2A2620;
  --text-mid: #5C5547;
  --text-light: #9C9283;
  --border: rgba(44,38,32,0.12);
  --shadow: 0 4px 24px rgba(44,38,32,0.08);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--charcoal);
}
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover {
  background: var(--charcoal);
  color: #F9F6F0;
}

/* HERO */
.hero {
  min-height: calc(100vh - 64px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 0;
  bottom: 0;
  width: 55%;
  background: var(--green);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 52%;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.025) 18px,
    rgba(255,255,255,0.025) 19px
  );
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.hero-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 0;
  min-height: calc(100vh - 64px - 80px);
}
.hero-logo {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
}

/* HERO BOTTOM BAR */
.hero-bottom-bar {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 0 40px;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}
.bar-sep { color: var(--amber); opacity: 0.4; }

/* MANIFESTO */
.manifesto {
  background: var(--charcoal);
  color: #F9F6F0;
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.manifesto-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: #F9F6F0;
}
.manifesto-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(249,246,240,0.7);
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-quote {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(249,246,240,0.1);
}
.manifesto-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(249,246,240,0.55);
  line-height: 1.5;
}

/* JOURNEY */
.journey {
  background: var(--bg);
  padding: 100px 48px;
}
.journey-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.journey-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.journey-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.journey-card {
  background: var(--surface);
  padding: 40px 36px;
}
.card-icon {
  color: var(--amber);
  margin-bottom: 20px;
}
.journey-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.journey-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--green);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 21px
  );
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.closing-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #F9F6F0;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.closing-body {
  font-size: 0.95rem;
  color: rgba(249,246,240,0.7);
  line-height: 1.8;
}
.closing-cta {
  margin-top: 36px;
}
.closing-tag {
  font-size: 0.8rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Closing image */
.closing-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-img {
  width: 100%;
  max-width: 480px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 6px 6px 0 rgba(200,149,108,0.3);
}

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #F9F6F0;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(249,246,240,0.45);
  max-width: 340px;
  line-height: 1.5;
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  font-size: 0.75rem;
  color: rgba(249,246,240,0.3);
  line-height: 1.8;
}

/* CONTACT */
.contact-section {
  background: var(--bg);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.contact-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.contact-sub {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-detail-value a {
  color: var(--amber-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.contact-detail-value a:hover {
  border-bottom-color: var(--amber-dark);
}

/* FORM */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--charcoal);
  color: #F9F6F0;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}
.form-submit:hover:not(:disabled) {
  background: var(--green);
}
.form-submit:active:not(:disabled) {
  transform: scale(0.99);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(30,58,47,0.08);
  border: 1px solid rgba(30,58,47,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--green);
}
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(200,100,60,0.08);
  border: 1px solid rgba(200,100,60,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #C8503C;
}
.form-error a {
  color: inherit;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero::before, .hero::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { align-items: flex-start; }
  .hero-bottom-bar { flex-wrap: wrap; gap: 12px; }
  .journey-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-visual { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
  .site-nav { padding: 0 24px; }
  .hero, .manifesto, .journey, .closing, .contact-section { padding-left: 24px; padding-right: 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 24px; }
  .site-footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .progress-board { width: 100%; }
  .journey-card { padding: 28px 24px; }
}

/* PORTFOLIO */
.portfolio {
  background: var(--bg);
  padding: 100px 48px;
}
.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.portfolio-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.portfolio-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 64px;
  line-height: 1.7;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,38,32,0.12);
}
.portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-img {
  transform: scale(1.04);
}
.portfolio-card-body {
  padding: 28px 28px 32px;
}
.portfolio-technique {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(200,149,108,0.1);
  border: 1px solid rgba(200,149,108,0.25);
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.portfolio-description {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.portfolio-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--charcoal);
  color: #F9F6F0;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover {
  border-color: var(--text-mid);
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-cta { flex-direction: column; align-items: flex-start; }
}