:root {
  --bg: #fffef8;
  --bg-soft: #fff9db;
  --ink: #121212;
  --muted: #5e5a4f;
  --paper: #ffffff;
  --line: #e9e1c2;
  --accent: #f7cc18;
  --accent-deep: #d4a500;
  --radius: 22px;
  --shadow: 0 14px 38px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  line-height: 1.45;
  overflow-x: hidden;
  background:
    radial-gradient(1000px 450px at 100% -20%, rgba(247, 204, 24, 0.18), transparent 66%),
    radial-gradient(800px 400px at -10% 60%, rgba(247, 204, 24, 0.12), transparent 70%),
    var(--bg);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: radial-gradient(#000 0.5px, transparent 0.6px);
  background-size: 4px 4px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(1180px, 94vw);
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-cta {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffe889);
  border: 1px solid #dcb63e;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  -webkit-tap-highlight-color: transparent;
}

.top-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(212, 165, 0, 0.32);
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  margin: 1rem auto 4rem;
}

section {
  position: relative;
  margin: 1.35rem 0;
  padding: clamp(1rem, 2.3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: rise 0.7s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

section:nth-of-type(2) {
  animation-delay: 0.1s;
}

section:nth-of-type(3) {
  animation-delay: 0.2s;
}

section:nth-of-type(4) {
  animation-delay: 0.3s;
}

section:nth-of-type(5) {
  animation-delay: 0.4s;
}

.hero {
  padding: clamp(1.2rem, 3vw, 2.8rem);
  overflow: hidden;
  border-color: #e3d49d;
}

.hero::before {
  content: "";
  position: absolute;
  top: -28%;
  right: -9%;
  width: min(44vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8cb 0, var(--accent) 70%, #cfa300 100%);
  opacity: 0.34;
  z-index: 0;
}

.hero-tag,
h1,
.hero-copy,
.hero-points {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #dfc97a;
  background: linear-gradient(90deg, #fff7c7, #fffbe6);
  color: #6d5908;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.01em;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.5rem, 11.5vw, 6.6rem);
  line-height: 0.92;
  max-width: 11ch;
}

h1 span {
  display: inline-block;
  margin-top: 0.26rem;
  padding: 0 0.25rem;
  color: #725400;
  background: linear-gradient(to top, #ffe88e 54%, transparent 54%);
}

.hero-copy {
  margin: 1rem 0 1.1rem;
  max-width: 57ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-points span {
  padding: 0.43rem 0.76rem;
  border-radius: 999px;
  border: 1px solid #ece3c1;
  background: #fffdfa;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

h2 {
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 0.92;
  margin-bottom: 0.95rem;
}

.services::after {
  content: "MORNING";
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  color: rgba(247, 204, 24, 0.36);
  pointer-events: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.8rem;
}

.card {
  position: relative;
  overflow: hidden;
  grid-column: span 6;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid #ece3c1;
  background: linear-gradient(170deg, #fffef9 0%, var(--bg-soft) 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.55) 35%, transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.card:nth-child(1) {
  grid-column: span 7;
}

.card:nth-child(2) {
  grid-column: span 5;
}

.card:nth-child(3) {
  grid-column: span 5;
}

.card:nth-child(4) {
  grid-column: span 4;
}

.card:nth-child(5) {
  grid-column: span 3;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(189, 152, 0, 0.16);
}

.card h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.card p {
  margin: 0.45rem 0 0;
  color: #5a5243;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.step {
  position: relative;
  min-height: 100px;
  padding: 0.85rem 0.85rem 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid #eadfb5;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 0.52rem;
  width: 4px;
  border-radius: 12px;
  background: linear-gradient(#ffe88c, var(--accent-deep));
}

.step strong {
  display: inline-block;
  margin-left: 0.38rem;
  margin-bottom: 0.3rem;
  color: #8f6b00;
  font-size: 1rem;
}

details {
  margin: 0.52rem 0;
  padding: 0.78rem 0.9rem;
  border: 1px solid #eadfb5;
  border-radius: 12px;
  background: #fffef9;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

summary {
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s ease;
}

details p {
  margin: 0.55rem 0 0.1rem;
  color: #5c5444;
}

.contact {
  background:
    linear-gradient(to right, rgba(247, 204, 24, 0.1), rgba(247, 204, 24, 0.02)),
    #fff;
}

.contact-head p {
  margin: 0.28rem 0 1rem;
  color: #7a6630;
  font-weight: 600;
}

.lead-form {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.68rem 0.76rem;
  border-radius: 12px;
  border: 1px solid #deceb0;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #d5ae1c;
  box-shadow: 0 0 0 4px rgba(247, 204, 24, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: 0.22rem;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 0.73rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  color: #1c1c1c;
  background: linear-gradient(135deg, var(--accent), #ffe682);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 165, 0, 0.28);
}

.ghost {
  background: #fff;
  border: 1px solid #decfba;
}

button:active,
.top-cta:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.contact-info {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eadfb6;
  font-style: normal;
  color: #5c5344;
}

.contact-info a {
  color: #2b2b2b;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size 0.28s ease;
}

.contact-info a:hover {
  background-size: 100% 1px;
}

footer {
  text-align: center;
  padding: 1.1rem 1rem 1.8rem;
  color: #675d4a;
  font-weight: 600;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card:nth-child(1),
  .card:nth-child(2),
  .card:nth-child(3),
  .card:nth-child(4),
  .card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  main {
    width: min(1180px, 95vw);
    margin-top: 0.85rem;
  }

  section {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .topbar {
    width: 95vw;
    margin-top: 0.7rem;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 18px;
    padding: 0.7rem;
  }

  .brand {
    text-align: center;
    width: 100%;
  }

  .top-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-points span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  .card,
  .card:nth-child(1),
  .card:nth-child(2),
  .card:nth-child(3),
  .card:nth-child(4),
  .card:nth-child(5) {
    grid-column: span 12;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea,
  button {
    min-height: 48px;
  }

  textarea {
    min-height: 120px;
  }

  .form-actions {
    gap: 0.48rem;
  }

  .form-actions button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 0.9rem;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .hero-tag {
    font-size: 0.84rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .topbar:hover {
    border-color: #dec978;
    box-shadow: 0 10px 28px rgba(28, 28, 28, 0.08);
  }

  section:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(22, 22, 22, 0.1);
    border-color: #e0d49f;
  }

  .hero-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 165, 0, 0.23);
  }

  .hero-points span:hover {
    transform: translateY(-2px);
    border-color: #e5ca6a;
    background: #fff8d8;
  }

  .card:hover::after {
    transform: translateX(120%);
  }

  .step:hover {
    transform: translateY(-3px);
    border-color: #dec666;
    box-shadow: 0 10px 24px rgba(212, 165, 0, 0.18);
  }

  details:hover {
    transform: translateY(-2px);
    border-color: #dfc96f;
    box-shadow: 0 8px 20px rgba(212, 165, 0, 0.12);
  }

  summary:hover {
    color: #7a6000;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
