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

:root {
  --bg:        #13110d;
  --surface:   #1d1a14;
  --surface-2: #252119;
  --text:      #dfd2b8;
  --muted:     #8c8070;
  --faint:     #514a3e;
  --green:     #6e9872;
  --green-dim: #3f5e42;
  --ochre:     #c4913a;
  --rule:      #2c2820;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Spectral', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  min-height: 100vh;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2.25rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
}

.hero-section::before, 
.hero-section::after {
  content: '';
  position: absolute;
  left: 0; 
  right: 0;
  height: 110px;
  pointer-events: none;
  z-index: 2;
}

.hero-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.hero-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.45);
}

.hero-box {
  position: relative;
  z-index: 1;
  background: radial-gradient(
    ellipse 95% 95% at 50% 50%,
    rgba(19, 17, 13, 0.93) 0%,
    rgba(19, 17, 13, 0.90) 40%,
    rgba(19, 17, 13, 0.68) 68%,
    rgba(19, 17, 13, 0.28) 85%,
    transparent 100%
  );
  border: none;
  padding: 5rem 3rem;
  text-align: center;
}

.hero-box > * {
  animation: fadeUp 0.75s ease both;
}

.hero-box .hero-eyebrow { animation-delay: 0.10s; }
.hero-box .hero-name    { animation-delay: 0.25s; }
.hero-box .hero-tagline { animation-delay: 0.45s; }
.hero-box .hero-nav     { animation-delay: 0.62s; }

.hero-box .hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.75rem;
}

.hero-box .hero-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1;
}

.hero-box .hero-name .name-primary {
  display: block;
  font-size: clamp(3rem, 11vw, 6rem); 
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.hero-box .hero-name .name-secondary {
  display: block;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-style: normal;
  color: var(--green);
  letter-spacing: 0.18em;
  margin-top: 0.5em;
}

.hero-box .hero-tagline {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-box .hero-nav {
  margin-top: 2.75rem;
  display: flex;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.hero-box .hero-nav a {
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-box .hero-nav a:hover { 
  color: var(--green); 
}

.photo-credit {
  font-size: 0.65rem;
  color: var(--faint);
  text-align: right;
  padding: 0.4rem 2.25rem;
  letter-spacing: 0.04em;
}

.photo-credit a { 
  color: var(--faint); 
  text-decoration: none; 
}

.photo-credit a:hover { 
  color: var(--muted); 
}

section { 
  padding: 3.5rem 0; 
}

.section-label {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
}

.about-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%; 
  flex-shrink: 0;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.82;
}

.about-text p + p { 
  margin-top: 1.1em; 
}

.about-text a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--green-dim);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.about-text a:hover {
  color: var(--ochre);
  text-decoration-color: var(--ochre);
}

.service-intro {
  font-size: 1.1rem;
  line-height: 1.82;
  margin-bottom: 2.5rem;
}

.service-intro p + p { 
  margin-top: 1.1em; 
}

.service-intro a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--green-dim);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.service-intro a:hover {
  color: var(--ochre);
  text-decoration-color: var(--ochre);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-item {
  background: var(--bg);
  display: block;
  text-decoration: none;
}

.service-item:hover .service-img-wrap img { 
  transform: scale(1.02); 
}

.service-item:hover .service-info { 
  background: var(--surface-2); 
}

.service-item:hover .service-name { 
  color: var(--ochre); 
}

.service-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}

.service-info {
  background: var(--surface);
  padding: 1.6rem 2rem 2rem;
  transition: background 0.22s;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.2;
  transition: color 0.22s;
}

.service-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.68;
}

.service-arrow {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.services-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.portfolio-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.portfolio-item {
  display: block;
  text-decoration: none;
  width: 190px;
  transition: opacity 0.22s;
}

.portfolio-item:hover { 
  opacity: 0.82; 
}

.portfolio-item:hover .portfolio-title { 
  color: var(--ochre); 
}

.portfolio-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
}

.portfolio-info { 
  padding-top: 1rem; 
}

.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
  transition: color 0.22s;
}

.portfolio-byline {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.portfolio-role {
  font-size: 0.88rem;       
  color: var(--muted);      
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.portfolio-link {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.micro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.micro-divider::before, 
.micro-divider::after {
  content: '';
  display: block;
  width: 90px;
  height: 1px;
  background: var(--rule);
}

.micro-dot {
  width: 4px; 
  height: 4px;
  border-radius: 50%;
  background: var(--green-dim);
}

.writing-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.writing-item {
  border-top: 1px solid var(--green-dim);
  padding-top: 1.75rem;
}

.writing-type {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.writing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.writing-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 720px;
}

.writing-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

.writing-link:hover { 
  color: var(--ochre); 
}

footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 3rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--faint);
  letter-spacing: 0.08em;
}

.footer-links { 
  display: flex; 
  gap: 1.75rem; 
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { 
  color: var(--green); 
}

@media (max-width: 600px) {
  .about-layout  { flex-direction: column; align-items: center; }
  .about-photo   { width: 130px; height: 130px; }
  .hero-box      { padding: 3rem 1.5rem; }
  .hero-nav      { gap: 1.5rem; }
  .footer-inner  { flex-direction: column; align-items: flex-start; }
}