:root {
  --emerald-dusk: #0a3d3a;
  --dark-goldenrod: #a37e2c;
  --field-drab: #6b4e1f;
  --alabaster: #f4f0e6;
  --night-black: #0a0a0a;
  --onyx: #3a3a3c;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-classic: 'Minion Pro', 'Source Sans 3', 'Georgia', serif;
  --font-sans: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --shadow-soft: 0 20px 50px rgba(10, 10, 10, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--alabaster);
  color: var(--night-black);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  color: var(--onyx);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(244, 240, 230, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 58, 60, 0.1);
}

.navbar nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.navbar nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--dark-goldenrod);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar nav a:hover::after,
.navbar nav a:focus-visible::after {
  transform: scaleX(1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(163, 126, 44, 0.4);
  box-shadow: 0 12px 24px rgba(10, 10, 10, 0.15);
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: 2px solid var(--dark-goldenrod);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

.brand-text span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.brand-text small {
  font-family: var(--font-classic);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--night-black);
}

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: linear-gradient(120deg, var(--emerald-dusk), #062321);
  color: var(--alabaster);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0.5rem 0 1rem;
}

.hero-subtext {
  font-size: 1rem;
  color: rgba(244, 240, 230, 0.8);
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image {
  width: 100%;
  min-height: 320px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 35px 60px rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.hero-card-inner {
  background: rgba(244, 240, 230, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn.primary {
  background: var(--dark-goldenrod);
  color: var(--night-black);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(244, 240, 230, 0.6);
  color: var(--alabaster);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

main {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section p {
  margin-bottom: 1rem;
}

.section ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.section li::before {
  content: '✦';
  color: var(--dark-goldenrod);
  margin-right: 0.6rem;
}

.section.duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.section-side {
  background: var(--field-drab);
  color: var(--alabaster);
  padding: 2rem;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
}

.section-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 60%);
}

.section-side h3 {
  margin-top: 0;
  font-family: var(--font-serif);
}

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

.card-list {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.05);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.05);
}

.image-panel {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
  box-shadow: 0 25px 50px rgba(10, 10, 10, 0.12);
  margin: 0;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 1.2rem 1.4rem;
  font-size: 0.95rem;
  color: var(--onyx);
}

.image-panel {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
  box-shadow: 0 25px 50px rgba(10, 10, 10, 0.12);
  margin: 0;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 1.2rem 1.4rem;
  font-size: 0.95rem;
  color: var(--onyx);
}

.image-card {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(163, 126, 44, 0.5);
  background: rgba(244, 240, 230, 0.4);
  box-shadow: 0 25px 60px rgba(10, 10, 10, 0.15);
  display: flex;
  flex-direction: column;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 1.2rem 1.4rem 1.5rem;
  background: linear-gradient(180deg, rgba(244, 240, 230, 0.95), rgba(244, 240, 230, 0.8));
  color: var(--night-black);
  font-size: 0.95rem;
}

.image-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.image-card.wide img {
  min-height: 320px;
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  min-height: 160px;
  box-shadow: 0 15px 35px rgba(10, 10, 10, 0.15);
}

.textured {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 40px 80px rgba(10, 10, 10, 0.06);
}

.pillars {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  display: grid;
}

.pillars li {
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 0.8rem;
  background: rgba(163, 126, 44, 0.08);
}

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

.signature-grid article {
  border: 1px solid rgba(10, 10, 10, 0.08);
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
}

.logo-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.blog {
  background: rgba(10, 10, 10, 0.02);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 25px 50px rgba(10, 10, 10, 0.05);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.blog-grid article {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 20px 40px rgba(10, 10, 10, 0.06);
}

.blog-grid .tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-goldenrod);
  margin-bottom: 0.6rem;
}

.blog-grid h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.blog-grid a {
  font-weight: 600;
  color: var(--emerald-dusk);
}

.promise blockquote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0;
  padding: 2rem;
  border-left: 4px solid var(--dark-goldenrod);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(10, 10, 10, 0.08);
}

.future {
  text-align: center;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.future-grid article {
  border: 1px dashed rgba(10, 10, 10, 0.15);
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(10, 61, 58, 0.08), rgba(163, 126, 44, 0.08));
}

.digital-grid {
  align-items: stretch;
}

.video-card {
  background: linear-gradient(135deg, rgba(10, 61, 58, 0.8), rgba(0, 0, 0, 0.8));
  border-radius: 1.5rem;
  padding: 2rem;
  color: var(--alabaster);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.video-card button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--alabaster);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  margin-bottom: 1rem;
}

.video-card p {
  margin: 0;
  color: rgba(244, 240, 230, 0.8);
}

.testimonials {
  background: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(10, 61, 58, 0.05);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(163, 126, 44, 0.6);
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.testimonial-card .name {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--onyx);
}

.future-grid button {
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: rgba(10, 61, 58, 0.2);
  color: var(--night-black);
}

.contact {
  background: var(--emerald-dusk);
  color: var(--alabaster);
  padding: clamp(2.5rem, 6vw, 4rem);
}

.contact ul li::before {
  color: var(--alabaster);
}

form {
  display: grid;
  gap: 1rem;
  background: rgba(244, 240, 230, 0.07);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.phone-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem;
}

.phone-group select {
  appearance: none;
  background: rgba(244, 240, 230, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.8rem;
  color: var(--alabaster);
  padding: 0.8rem 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(244, 240, 230, 0.1);
  color: var(--alabaster);
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(244, 240, 230, 0.8);
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.form-status.success {
  color: #b7f5d4;
}

.form-status.error {
  color: #ffdfe1;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  background: var(--night-black);
  color: var(--alabaster);
  font-size: 0.9rem;
}

.social-links {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 230, 0.3);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.3s ease;
}

.social-links a:hover {
  background: rgba(244, 240, 230, 0.2);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--alabaster);
  display: block;
}

.social-links a[aria-label*="X"] svg,
.social-links a[aria-label*="Twitter"] svg {
  width: 18px;
  height: 18px;
  fill: var(--alabaster);
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .navbar nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(244, 240, 230, 0.95);
    flex-direction: column;
    padding: 1rem 1.5rem;
    min-width: 220px;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .navbar nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero,
  main,
  .contact {
    padding: 2rem 1.25rem;
  }

  footer {
    flex-direction: column;
  }

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

  .hero-image {
    min-height: 240px;
  }

  .phone-group {
    grid-template-columns: 1fr;
  }
}
