:root {
  --bg: #f7f1e8;
  --surface: #fffaf3;
  --surface-strong: #1d1a17;
  --surface-soft: #e8dcc8;
  --ink: #201c19;
  --muted: #6f6458;
  --accent: #9f6b2f;
  --accent-soft: #d8bb93;
  --line: rgba(32, 28, 25, 0.12);
  --shadow: 0 24px 60px rgba(40, 26, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(159, 107, 47, 0.16), transparent 24rem),
    linear-gradient(180deg, #fcf8f2 0%, var(--bg) 45%, #efe4d5 100%);
}

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

main,
.site-header,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer,
.hero,
.intro-grid,
.category-section,
.services-section,
.cta-banner {
  position: relative;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
}

.eyebrow,
.section-kicker,
.tagline,
.category-index {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.tagline {
  margin: 0;
  max-width: 24rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.7);
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"] {
  background: var(--surface-strong);
  border-color: var(--surface-strong);
  color: #f8f1e8;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
  align-items: center;
}

.hero h1,
.section-heading h2,
.story-card h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-text,
.story-card p,
.category-card p,
.service-card p,
.cta-banner p,
.site-footer p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-text {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--surface-strong);
  color: #fff5e8;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.hero-panel {
  position: relative;
  min-height: 30rem;
  border-radius: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 248, 238, 0.92), rgba(232, 220, 200, 0.92)),
    linear-gradient(135deg, #e1ceb2, #f5ebdf);
  border: 1px solid rgba(32, 28, 25, 0.09);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(159, 107, 47, 0.16);
}

.hero-panel::before {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  right: -3rem;
}

.hero-panel::after {
  width: 9rem;
  height: 9rem;
  left: -2rem;
  bottom: 3rem;
}

.watch-orbit {
  position: absolute;
  inset: 2rem 2rem 6rem;
  display: grid;
  place-items: center;
}

.watch-face {
  position: relative;
  width: min(24rem, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 18px solid #1e1b18;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.88), rgba(227, 210, 186, 0.9));
  box-shadow:
    inset 0 0 0 10px rgba(255, 246, 232, 0.65),
    0 30px 40px rgba(31, 22, 16, 0.22);
}

.watch-face::before,
.watch-face::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 5rem;
  height: 11rem;
  background: linear-gradient(180deg, #7a5832, #c6975f);
  transform: translateX(-50%);
  border-radius: 2rem;
}

.watch-face::before {
  top: -8.5rem;
}

.watch-face::after {
  bottom: -8.5rem;
}

.marker,
.hand,
.center-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center bottom;
}

.marker {
  width: 0.3rem;
  height: 1.5rem;
  margin-left: -0.15rem;
  background: var(--surface-strong);
  border-radius: 999px;
}

.marker-top {
  transform: translate(-50%, -10.4rem);
}

.marker-right {
  transform: translate(10.1rem, -50%) rotate(90deg);
}

.marker-bottom {
  transform: translate(-50%, 8.9rem);
}

.marker-left {
  transform: translate(-10.1rem, -50%) rotate(90deg);
}

.hand {
  background: var(--surface-strong);
  border-radius: 999px;
}

.hand-hour {
  width: 0.38rem;
  height: 4.7rem;
  transform: translate(-50%, -100%) rotate(25deg);
}

.hand-minute {
  width: 0.24rem;
  height: 7rem;
  transform: translate(-50%, -100%) rotate(140deg);
}

.center-dot {
  width: 0.95rem;
  height: 0.95rem;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-stat {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  width: min(17rem, calc(100% - 2.6rem));
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(29, 26, 23, 0.92);
  color: #f4eadb;
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.9rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.hero-stat span {
  color: rgba(244, 234, 219, 0.82);
  line-height: 1.55;
}

.intro-grid,
.category-grid,
.services-grid {
  display: grid;
  gap: 1.25rem;
}

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

.story-card,
.category-card,
.service-card,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: rgba(255, 250, 243, 0.75);
  backdrop-filter: blur(8px);
}

.story-card {
  padding: 2rem;
  box-shadow: 0 12px 34px rgba(65, 42, 19, 0.08);
}

.accent-card {
  background: linear-gradient(180deg, rgba(232, 220, 200, 0.95), rgba(255, 250, 243, 0.88));
}

.promise-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.category-section,
.services-section {
  padding: 2.5rem 0;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

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

.category-card,
.service-card {
  padding: 1.6rem;
}

.category-index {
  display: inline-block;
  margin-bottom: 2.2rem;
  font-size: 0.8rem;
  color: var(--accent);
}

.category-card h3,
.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

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

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
  padding: 1.6rem 1.7rem;
}

.cta-banner .section-kicker,
.cta-banner p {
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 0 2.5rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

@media (max-width: 900px) {
  .hero,
  .intro-grid,
  .category-grid,
  .services-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-panel {
    min-height: 24rem;
  }

  .watch-face {
    width: min(18rem, 100%);
    border-width: 14px;
  }

  .watch-face::before,
  .watch-face::after {
    width: 4.2rem;
    height: 8rem;
  }

  .watch-face::before {
    top: -6rem;
  }

  .watch-face::after {
    bottom: -6rem;
  }

  .cta-banner {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 0;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 14vw, 3.7rem);
  }

  .hero-panel {
    min-height: 21rem;
  }

  .hero-stat {
    position: static;
    margin: 1rem;
    width: auto;
  }

  .story-card,
  .category-card,
  .service-card,
  .cta-banner {
    padding: 1.3rem;
  }
}
