:root {
  --bg: #f8f5ee;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #1d3d35;
  --text-soft: #546963;
  --line: rgba(29, 61, 53, 0.12);
  --green: #1f6a52;
  --green-deep: #134638;
  --orange: #de8a25;
  --shadow: 0 20px 60px rgba(17, 47, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(222, 138, 37, 0.18), transparent 28%),
    radial-gradient(circle at right 20%, rgba(31, 106, 82, 0.14), transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.hero,
.section {
  backdrop-filter: blur(10px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  color: #fff;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-text span {
  color: var(--orange);
  font-weight: 600;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover,
.map-link:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 54px;
  margin-top: 24px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 235, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.9rem;
  font-weight: 600;
}

.lead,
.intro-grid p,
.service-card p,
.tax-copy p,
.tax-panel p,
.location-grid p,
.contact-card p,
.site-footer,
.card-caption,
.site-nav,
.text-link {
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(31, 106, 82, 0.18);
  background: rgba(31, 106, 82, 0.08);
  color: var(--green);
}

.text-link {
  color: var(--text-soft);
  font-weight: 600;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  color: var(--text-soft);
}

.hero-card {
  display: grid;
  gap: 18px;
}

.card-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 30px 60px rgba(15, 44, 35, 0.1);
}

.card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section {
  margin-top: 24px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 26px;
}

.intro-grid,
.service-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.service-card,
.contact-card,
.tax-panel {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.intro-grid article p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 700;
}

.service-card p,
.contact-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.tax-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(160deg, rgba(19, 70, 56, 0.96), rgba(31, 106, 82, 0.9)),
    var(--green-deep);
  color: #f6f1e8;
}

.tax-section .eyebrow,
.tax-section .tax-note {
  color: rgba(246, 241, 232, 0.8);
}

.tax-copy p {
  margin: 16px 0 0;
  max-width: 62ch;
}

.tax-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  display: grid;
  align-content: start;
}

.tax-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  color: #fff;
}

.tax-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.18);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.location-grid p {
  margin: 0;
  color: var(--text-soft);
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  font-weight: 700;
}

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

.contact-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 106, 82, 0.24);
  box-shadow: 0 16px 28px rgba(17, 47, 39, 0.08);
}

.contact-card span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 8px 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.site-footer p,
.card-caption p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-main {
  margin-top: 24px;
  padding: 44px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.legal-main p,
.legal-main li {
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
}

.legal-card ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

@media (max-width: 980px) {
  .hero,
  .tax-section,
  .intro-grid,
  .service-grid,
  .contact-grid,
  .legal-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section,
  .legal-main {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 12px;
  }

  .site-header {
    top: 8px;
    padding: 16px;
    border-radius: 20px;
  }

  h1 {
    max-width: 100%;
  }

  .brand-text strong {
    font-size: 1.5rem;
  }

  .hero,
  .section,
  .legal-main {
    padding: 22px;
    border-radius: 24px;
  }

  .card-caption {
    flex-direction: column;
  }
}
