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

:root {
  --black:     #111111;
  --black-mid: #222222;
  --orange:    #E8621E;
  --orange-lt: #F07840;
  --white:     #ffffff;
  --off-white: #f8f6f2;
  --gray:      #767070;
  --text:      #1a1817;
  --text-lt:   #5a5756;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1120px;
  --pad:   clamp(1.25rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 98, 30, 0.25);
}

nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--orange-lt); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  color: var(--text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 72% 48%, rgba(232, 98, 30, 0.07) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--pad) + 5rem) var(--pad) var(--pad);
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--black);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-lt);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
}

.hero-decoration {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 46vw, 560px);
  pointer-events: none;
  filter: drop-shadow(0 16px 48px rgba(17, 17, 17, 0.2));
}

.hero-decoration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Shared ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* ── About ── */
.about {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--off-white);
}

.about h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  color: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.about-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.1);
}

.about-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.about-icon svg { width: 100%; height: 100%; }

.about-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--text-lt);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ── Divider quote ── */
.divider-section {
  background: var(--black-mid);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--white);
  max-width: 44ch;
  line-height: 1.5;
  font-style: italic;
}

cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--orange);
}

/* ── Contact ── */
.contact {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 720px) {
  .contact-inner { grid-template-columns: 1fr; }
}

.contact-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.contact-intro p {
  color: var(--text-lt);
  font-size: 0.9375rem;
  max-width: 36ch;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-lt);
  font-size: 0.875rem;
}

.contact-detail-item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 4px;
  padding: 2.25rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.4rem;
}

input, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 98, 30, 0.15);
}

textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-spinner svg {
  width: 1.1rem;
  height: 1.1rem;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
}

.form-feedback.success {
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: #1e6b35;
}

.form-feedback.error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #b02a37;
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.825rem;
  letter-spacing: 0.04em;
}

/* ── Utility ── */
@media (max-width: 480px) {
  .hero-decoration { display: none; }
}
