* {
  box-sizing: border-box;
}

:root {
  --cream: #f7f0e6;
  --sand: #eadcc8;
  --stone: #d9c6aa;
  --gold: #b9915a;
  --gold-deep: #9d7741;
  --deep: #27231f;
  --muted: #6f665d;
  --white: #fffaf3;
  --line: rgba(39, 35, 31, 0.12);
  --line-soft: rgba(39, 35, 31, 0.06);
  --shadow: 0 28px 80px rgba(52, 42, 31, 0.14);
  --shadow-sm: 0 10px 30px rgba(52, 42, 31, 0.08);
  --shadow-hover: 0 36px 100px rgba(52, 42, 31, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 10%, rgba(185,145,90,0.16), transparent 30%),
    radial-gradient(circle at 5% 80%, rgba(185,145,90,0.08), transparent 35%),
    linear-gradient(135deg, #fbf6ef 0%, var(--cream) 48%, #efe1ce 100%);
  background-attachment: fixed;
  color: var(--deep);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 6vw;
  background: rgba(247, 240, 230, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  transition: opacity 200ms var(--ease);
}

.brand:hover {
  opacity: 0.75;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-role {
  color: var(--gold);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a,
.nav-cta {
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  padding: 14px 24px;
  background: var(--gold);
  color: white;
  border-radius: 999px;
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(185, 145, 90, 0.35);
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 7vw;
  padding: 70px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 110px;
  width: 500px;
  height: 500px;
  background: rgba(185, 145, 90, 0.12);
  border-radius: 50%;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.centered .eyebrow {
  justify-content: center;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 8.4vw, 8rem);
  margin: 0 0 28px;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  padding: 16px 26px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 2px;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}

.primary {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}

.primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(185, 145, 90, 0.32);
}

.secondary {
  border: 1px solid var(--gold);
  color: var(--deep);
  background: transparent;
}

.secondary:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.portrait-frame {
  border-radius: 260px 260px 20px 20px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  position: relative;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(39, 35, 31, 0.12));
  z-index: 1;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 800ms var(--ease);
}

.portrait-frame:hover img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  left: -48px;
  bottom: 44px;
  width: 240px;
  padding: 24px 26px;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-left: 2px solid var(--gold);
  z-index: 2;
}

.floating-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.floating-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 500;
}

/* ---------- Intro strip ---------- */
.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.58);
}

.intro-strip p {
  margin: 0;
  padding: 26px 20px;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  border-right: 1px solid var(--line);
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.intro-strip p:last-child {
  border-right: 0;
}

.intro-strip p:hover {
  color: var(--gold);
  background: rgba(255, 250, 243, 0.85);
}

/* ---------- Section base ---------- */
.section {
  padding: 110px 6vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.centered {
  text-align: center;
  margin: 0 auto 64px;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.5);
  overflow: hidden;
  border-radius: 2px;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 300ms var(--ease), transform 300ms var(--ease);
  overflow: hidden;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 1):nth-child(3n + 1),
.service-card:nth-last-child(-n + 2):nth-child(3n + 1),
.service-card:nth-last-child(-n + 1):nth-child(3n + 2) {
  border-bottom: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(185, 145, 90, 0.06) 100%);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}

.service-card:hover {
  background: rgba(255, 250, 243, 0.9);
}

.service-card:hover::before {
  opacity: 1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(185, 145, 90, 0.4);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 28px;
  background: rgba(255, 250, 243, 0.6);
  transition: background 300ms var(--ease), border-color 300ms var(--ease), transform 300ms var(--ease);
}

.service-card:hover .icon {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: rotate(-6deg);
}

.service-card h3 {
  font-size: 1.7rem;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.65;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 7vw;
  background: linear-gradient(135deg, rgba(234, 220, 200, 0.75), rgba(255, 250, 243, 0.65));
}

.about-copy p {
  color: var(--muted);
  max-width: 610px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.text-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateX(4px);
}

.about-panel {
  background: rgba(255, 250, 243, 0.78);
  padding: 50px 46px;
  box-shadow: var(--shadow);
  align-self: start;
  border-radius: 2px;
}

.panel-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 300ms var(--ease);
}

.panel-item:hover {
  transform: translateX(4px);
}

.panel-item:first-child {
  padding-top: 0;
}

.panel-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.panel-item span {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.panel-item h3,
.timeline h3,
.approach-list h3 {
  font-size: 1.65rem;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.panel-item p,
.timeline p,
.approach-list p,
.contact p {
  color: var(--muted);
  margin: 0;
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline article {
  position: relative;
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  transition: background 300ms var(--ease);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}

.timeline article:hover {
  background: rgba(255, 250, 243, 0.65);
}

.timeline article:hover::before {
  transform: scaleX(1);
}

.timeline span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ---------- Approach (dark) ---------- */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  background: var(--deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185, 145, 90, 0.18), transparent 60%);
  pointer-events: none;
}

.approach .eyebrow {
  color: var(--gold);
}

.approach .eyebrow::before {
  background: var(--gold);
}

.quote-card {
  position: relative;
  z-index: 1;
}

.quote-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.approach-list {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.approach-list div {
  padding: 28px 30px;
  border: 1px solid rgba(255, 250, 243, 0.14);
  background: rgba(255, 250, 243, 0.04);
  border-radius: 2px;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), transform 300ms var(--ease);
}

.approach-list div:hover {
  background: rgba(255, 250, 243, 0.08);
  border-color: rgba(185, 145, 90, 0.6);
  transform: translateY(-2px);
}

.approach-list h3 {
  color: var(--white);
}

.approach-list p {
  color: rgba(255, 250, 243, 0.72);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 6vw;
  align-items: center;
}

.contact-card {
  background: var(--white);
  padding: 46px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  transition: box-shadow 300ms var(--ease), transform 300ms var(--ease);
}

.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.contact-card a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  color: var(--deep);
  transition: color 200ms var(--ease), padding-left 200ms var(--ease);
  position: relative;
}

.contact-card a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ---------- Footer ---------- */
footer {
  padding: 36px 6vw;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline article {
    border-bottom: 1px solid var(--line);
  }

  .timeline article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .hero,
  .about,
  .approach,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
    text-align: left;
  }

  h1 {
    font-size: clamp(3rem, 11vw, 4.6rem);
  }

  .intro-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip p:nth-child(2n) {
    border-right: 0;
  }

  .intro-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(3n),
  .service-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .timeline article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .floating-card {
    left: 20px;
    bottom: 20px;
    width: 210px;
    padding: 20px 22px;
  }

  .section {
    padding: 80px 6vw;
  }

  .about-panel,
  .contact-card {
    padding: 32px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 52px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -30px;
    margin-left: 20px;
    width: calc(100% - 40px);
    max-width: 260px;
  }

  .panel-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-panel {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
