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

:root {
  --bg: #f8f7f4;
  --white: #ffffff;
  --text: #1b1b1b;
  --muted: #7a7670;
  --accent: #b08d57;
  --accent-h: #9a7a45;
  --accent-glow: rgba(176,141,87,.12);
  --border: #e4e1db;
  --dark: #141311;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --header: 60px;
  --r: 10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .03em; padding: 14px 32px; border-radius: 100px;
  border: none; cursor: pointer; transition: all .3s var(--ease);
  background: var(--accent); color: #fff;
}
.btn:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(176,141,87,.25); }
.btn-full { width: 100%; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header); background: rgba(248,247,244,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.header.scrolled { border-bottom-color: var(--border); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  font-size: .55rem; color: var(--muted); border: 1px dashed var(--border);
  padding: 3px 7px; border-radius: 4px; font-weight: 500;
}
.logo-name { font-family: var(--serif); font-size: 1.1rem; }
.nav-cta {
  font-size: .8rem; font-weight: 600; color: var(--accent);
  padding: 8px 20px; border: 1.5px solid var(--accent); border-radius: 100px;
  transition: all .3s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

/* HERO */
.hero { padding: calc(var(--header) + 40px) 0 64px; }
.hero-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.hero-text h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 18px;
}
.hero-text h1 em { font-style: italic; }
.hero-sub { font-size: .95rem; color: var(--muted); max-width: 440px; margin-bottom: 28px; }
.hero-img { border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; max-height: 480px; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* SERVICES */
.services { padding: 64px 0; background: var(--white); }
.services-title {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 40px;
}
.center { text-align: center; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.s-card {
  padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
}
.s-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.s-card--pop { background: var(--dark); color: #fff; border-color: transparent; position: relative; }
.s-card--pop:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.s-card--pop .s-desc { color: rgba(255,255,255,.6); }
.s-card--pop .s-includes li { color: rgba(255,255,255,.65); border-bottom-color: rgba(255,255,255,.08); }
.s-card--pop .s-includes li::before { color: var(--accent); }
.s-card--pop .s-tag { color: var(--accent); }
.s-badge {
  display: inline-block; font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-glow); padding: 4px 14px; border-radius: 100px;
  margin-bottom: 12px; width: fit-content;
}
.s-card-top { margin-bottom: 20px; }
.s-tag {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 8px;
}
.s-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.s-price {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  line-height: 1; margin-bottom: 12px; letter-spacing: -.02em;
}
.s-price-per { font-family: var(--sans); font-size: .8rem; font-weight: 400; color: var(--muted); }
.s-card--pop .s-price-per { color: rgba(255,255,255,.5); }
.s-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.s-includes { flex: 1; margin-bottom: 24px; }
.s-includes li {
  padding: 8px 0 8px 20px; position: relative;
  font-size: .82rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.s-includes li:last-child { border-bottom: none; }
.s-includes li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--accent); font-size: .72rem; font-weight: 600;
}
.s-card .btn { margin-top: auto; width: 100%; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #2a2a28; transform: translateY(-1px); }

/* ABOUT */
.about { padding: 80px 0; }
.about-layout { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about-photo { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; max-height: 420px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 16px;
}
.about-body p { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.cred-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cred-tags li {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-glow);
  padding: 5px 12px; border-radius: 100px;
}

/* IMAGE ROW */
.img-row { padding: 0 0 64px; }
.img-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.img-row-grid figure { border-radius: var(--r); overflow: hidden; aspect-ratio: 3/2; }
.img-row-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.img-row-grid figure:hover img { transform: scale(1.02); }

/* APPLY */
.apply { padding: 80px 0; background: var(--white); }
.apply-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.apply-left h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 14px;
}
.apply-left h2 em { font-style: italic; }
.apply-left p { font-size: .9rem; color: var(--muted); }
.apply-right {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 10px 14px; font-family: var(--sans); font-size: .88rem;
  border: 1px solid var(--border); border-radius: 6px; background: var(--white);
  color: var(--text); transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7670' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field textarea { resize: vertical; min-height: 68px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 32px 0; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer .logo-name { color: #fff; font-size: .95rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5);
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-copy { font-size: .7rem; color: rgba(255,255,255,.25); width: 100%; text-align: center; margin-top: 8px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* FOCUS */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* TABLET */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .wrap { padding: 0 40px; }
  .hero { padding-top: calc(var(--header) + 56px); }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-layout { grid-template-columns: 5fr 7fr; gap: 64px; }
  .apply-layout { grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
}
