@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #f8f3ea;
  --bg-soft: #f0e5d4;
  --panel: #fffdf8;
  --panel-alt: #fff7ee;
  --text: #1e2b30;
  --muted: #5f6d74;
  --line: #dccfbc;
  --primary: #0f6f69;
  --primary-soft: #d6ece9;
  --accent: #c55f3f;
  --accent-soft: #f7e3db;
  --highlight: #f2bc72;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 28px rgba(47, 37, 23, 0.08);
  --shadow-md: 0 20px 48px rgba(47, 37, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 5% -10%, rgba(242, 188, 114, 0.26), transparent 62%),
    radial-gradient(850px 480px at 95% 5%, rgba(15, 111, 105, 0.14), transparent 64%),
    linear-gradient(180deg, #f9f4ec 0%, #f7f2e9 45%, #f3ebdf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, transparent 30%),
    linear-gradient(transparent 96%, rgba(197, 95, 63, 0.08) 100%);
}

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

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

h1,
h2,
h3,
strong,
summary {
  font-family: "Sora", "Manrope", sans-serif;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.notice {
  position: sticky;
  top: 0;
  z-index: 1100;
  border-bottom: 1px solid rgba(197, 95, 63, 0.18);
  background: linear-gradient(90deg, #fff5ea, #fffaf3);
}

.notice__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  color: #4f5d65;
}

.notice__divider {
  color: rgba(95, 109, 116, 0.4);
}

.notice__cta {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #7d341d;
  background: rgba(242, 188, 114, 0.3);
  border: 1px solid rgba(197, 95, 63, 0.25);
  transition: transform 180ms ease, background 180ms ease;
}

.notice__cta:hover {
  transform: translateY(-1px);
  background: rgba(242, 188, 114, 0.45);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 207, 188, 0.78);
  backdrop-filter: blur(12px);
  background: rgba(251, 245, 235, 0.86);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  padding: 6px;
  background: #fff;
  border: 1px solid #eadfce;
  box-shadow: var(--shadow-sm);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__text strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand__text span {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav__toggleBars,
.nav__toggleBars::before,
.nav__toggleBars::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #2e3a40;
}

.nav__toggleBars {
  position: relative;
  display: block;
  margin: 0 auto;
}

.nav__toggleBars::before,
.nav__toggleBars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggleBars::before {
  top: -6px;
}

.nav__toggleBars::after {
  top: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__menu a {
  padding: 11px 13px;
  border-radius: 12px;
  font-weight: 600;
  color: #344148;
  transition: background 180ms ease, color 180ms ease;
}

.nav__menu a:hover {
  background: rgba(15, 111, 105, 0.12);
  color: #184e4a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: none;
  border-radius: 13px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #0f6f69, #0f877f);
  box-shadow: 0 15px 30px rgba(15, 111, 105, 0.24);
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn--small {
  padding: 10px 14px;
  border-radius: 11px;
  font-size: 13px;
}

.btn--ghost {
  color: #1f2b30;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 207, 188, 0.8);
  box-shadow: none;
}

.hero {
  padding: 56px 0 32px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 26px;
  align-items: stretch;
}

.hero__content {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 239, 0.88));
  border: 1px solid #e5d7c5;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.2vw, 42px);
  box-shadow: var(--shadow-md);
  animation: rise-in 680ms ease both;
}

.pill {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #f0cfb3;
  background: linear-gradient(130deg, #fff6ec, #ffedd8);
  font-size: 12.5px;
  font-weight: 700;
  color: #8a492d;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero__sub {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 58ch;
}

.accent {
  color: var(--accent);
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero__chips {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.chip {
  padding: 13px 12px;
  border-radius: 14px;
  border: 1px solid #ebdcc8;
  background: rgba(255, 255, 255, 0.66);
}

.chip strong {
  display: block;
  font-size: 13px;
}

.chip span {
  margin-top: 5px;
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}

.hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 12px;
  animation: fade-in 720ms ease 120ms both;
}

.media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e4d4c0;
  box-shadow: var(--shadow-md);
  background: var(--panel);
  position: relative;
  min-height: 170px;
}

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

.media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.media--tall {
  grid-row: span 2;
}

.section {
  padding: 70px 0;
}

.section--soft {
  background:
    radial-gradient(900px 300px at 50% -10%, rgba(15, 111, 105, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14));
  border-top: 1px solid rgba(220, 207, 188, 0.7);
  border-bottom: 1px solid rgba(220, 207, 188, 0.7);
}

.sectionHead {
  max-width: 760px;
  margin-bottom: 24px;
}

.sectionHead h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
}

.sectionHead p {
  margin: 12px 0 0;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.serviceCard {
  background: var(--panel);
  border: 1px solid #e4d7c6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.serviceCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.serviceCard img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.serviceCard > div {
  padding: 18px;
}

.serviceCard h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.serviceCard p {
  margin: 10px 0 0;
  font-size: 14px;
}

.serviceCard--highlight {
  border-color: rgba(197, 95, 63, 0.34);
  background: linear-gradient(180deg, #fff8ef, #fffaf4);
}

.serviceCard--highlight .btn {
  margin-top: 14px;
}

.portfolio {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.portfolio__main,
.portfolio__side figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4d7c4;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.portfolio__main img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.portfolio__main::after,
.portfolio__side figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.portfolio__side {
  display: grid;
  gap: 14px;
}

.portfolio__side img {
  width: 100%;
  height: 164px;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e4d7c6;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-sm);
}

.step__num {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #7f3724;
  background: var(--accent-soft);
  border: 1px solid #e8b8a8;
}

.step h3 {
  margin: 10px 0 8px;
  font-size: 17px;
}

.step p {
  margin: 0;
  font-size: 13.5px;
}

.reviewWall {
  margin-top: 4px;
  display: grid;
  gap: 12px;
  position: relative;
}

.reviewWall::before,
.reviewWall::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}

.reviewWall::before {
  left: 0;
  background: linear-gradient(90deg, #f5efe6, rgba(245, 239, 230, 0));
}

.reviewWall::after {
  right: 0;
  background: linear-gradient(270deg, #f5efe6, rgba(245, 239, 230, 0));
}

.reviewRow {
  overflow: hidden;
  border-radius: 16px;
}

.reviewTrack {
  width: max-content;
  display: flex;
  gap: 12px;
  animation: review-scroll-left 44s linear infinite;
}

.reviewRow--right .reviewTrack {
  animation-name: review-scroll-right;
  animation-duration: 48s;
}

.reviewRow--slow .reviewTrack {
  animation-duration: 54s;
}

.reviewCard {
  width: min(420px, 82vw);
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d9cab6;
  box-shadow: 0 10px 22px rgba(33, 45, 55, 0.08);
}

.reviewStars {
  color: #f0933f;
  letter-spacing: 0.1em;
  font-size: 15px;
  margin-bottom: 8px;
}

.reviewCard strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.reviewCard p {
  margin: 0;
  color: #334d5d;
  font-size: 15px;
  line-height: 1.4;
}

@keyframes review-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes review-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

details {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e1d3c1;
  background: rgba(255, 253, 248, 0.88);
}

summary {
  cursor: pointer;
  font-size: 16px;
  color: #2b393f;
}

details p {
  margin: 9px 0 2px;
}

.section--contact {
  padding-top: 28px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.lead {
  font-size: 16px;
}

.contact__info {
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid #e5d8c5;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 30px);
}

.contact__info h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.contactCards {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.miniCard {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e8dbc9;
  background: rgba(255, 255, 255, 0.74);
}

.miniCard span {
  margin-top: 6px;
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.form {
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 20px;
  border: 1px solid #dfd1be;
  background: linear-gradient(180deg, #fffdf9, #fff7ed);
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: #344048;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8cbb8;
  font: inherit;
  color: #253238;
  background: #fffefa;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #72aca8;
  box-shadow: 0 0 0 4px rgba(15, 111, 105, 0.12);
}

.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.checkbox input {
  width: 17px;
  height: 17px;
}

.form__fineprint {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #6d7a81;
}

.form__success {
  margin-top: 12px;
  font-weight: 700;
  color: #1a6560;
}

.footer {
  margin-top: 50px;
  padding: 28px 0 18px;
  background: linear-gradient(180deg, #f4ecde, #ede1cd);
  border-top: 1px solid #d7c8b2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #decfb9;
}

.footer__brand span {
  margin-top: 3px;
  display: block;
  font-size: 13px;
  color: #5f6d74;
}

.footer__text {
  margin-top: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: #324047;
}

.footer__links a:hover,
.backTop:hover {
  text-decoration: underline;
}

.muted {
  color: #607078;
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #dac9b4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #56666e;
  font-size: 13px;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .portfolio,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio__main img {
    min-height: 420px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1180px, 94%);
  }

  body::before {
    display: none;
  }

  .notice__inner {
    padding: 8px 0;
    min-height: auto;
    flex-wrap: wrap;
    text-align: center;
    gap: 6px;
    font-size: 12.5px;
  }

  .header {
    top: 0;
  }

  .header__inner {
    min-height: 74px;
  }

  .brand__text span {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: relative;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    width: min(360px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 251, 243, 0.97);
    border: 1px solid #dccaaf;
    box-shadow: var(--shadow-md);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn,
  .btn--ghost {
    width: 100%;
  }

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

  .media--tall {
    grid-row: span 1;
  }

  .hero__chips,
  .servicesGrid,
  .steps,
  .form__row,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .serviceCard img {
    height: 190px;
  }

  .serviceCard > div {
    padding: 16px;
  }

  .portfolio__main img {
    min-height: 280px;
  }

  .portfolio__side img {
    height: 180px;
  }

  .reviewWall::before,
  .reviewWall::after {
    width: 34px;
  }

  .reviewCard {
    width: min(310px, 88vw);
  }

  .reviewCard strong {
    font-size: 18px;
  }

  .reviewCard p {
    font-size: 14px;
  }

  .reviewTrack {
    animation-duration: 36s;
  }

  .section {
    padding: 48px 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reviewTrack {
    animation: none !important;
  }
}
