/* THEME : GOLDEN HOUR — mustard #f4a900 · terracotta #c1666b · beige #d4b896 · chocolate #4a403a */
:root {
  --choc: #4a403a;
  --choc-2: #5d5149;
  --must: #f4a900;
  --must-dk: #d18f00;
  --must-soft: #fdf3dd;
  --terra: #c1666b;
  --terra-dk: #a5545a;
  --terra-soft: #f9edee;
  --beige: #d4b896;
  --sand: #faf6f0;
  --txt: #453b35;
  --mut: #7d7068;
  --bd: #e8ddcd;
  --r: 14px;
  --rl: 20px;
  --sh: 0 1px 2px rgba(74, 64, 58, 0.05), 0 10px 26px rgba(74, 64, 58, 0.07);
  --sh-h: 0 3px 8px rgba(74, 64, 58, 0.08), 0 18px 44px rgba(74, 64, 58, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cabin", system-ui, sans-serif;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--txt);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--choc);
}

a {
  color: var(--terra-dk);
}

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.lab {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terra-dk);
}

.top {
  background: var(--must-soft);
  color: var(--choc);
  font-size: 14.5px;
  border-bottom: 1px solid var(--bd);
}

.top .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-block: 9px;
}

.top a {
  color: var(--terra-dk);
  font-weight: 600;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bd);
}

.hd {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 8px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 66px;
}

.brand .nm {
  font-family: "Bitter";
  font-size: 24px;
  font-weight: 700;
  color: var(--choc);
  line-height: 1;
}

.brand .nm small {
  display: block;
  font-family: "Cabin";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--mut);
  margin-top: 4px;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 5px;
}

nav a {
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--mut);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

nav a:hover {
  background: var(--must-soft);
  color: var(--choc);
}

.hnum {
  font-family: "Cabin";
  font-size: 17px;
  font-weight: 600;
  color: var(--choc);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 18px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Cabin";
  font-weight: 600;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: 100px;
  transition: background 0.16s, transform 0.16s, box-shadow 0.16s;
  border: 2px solid transparent;
}

.btn-t {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 102, 107, 0.3);
}

.btn-t:hover {
  background: var(--terra-dk);
  transform: translateY(-1px);
}

.btn-m {
  background: var(--must);
  color: var(--choc);
  box-shadow: 0 6px 18px rgba(244, 169, 0, 0.3);
}

.btn-m:hover {
  background: var(--must-dk);
}

.btn-o {
  border-color: var(--bd);
  background: #fff;
  color: var(--choc);
}

.btn-o:hover {
  border-color: var(--terra);
  color: var(--terra-dk);
}

.burger {
  display: none;
  margin-left: auto;
  border: 1px solid var(--bd);
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font: 600 14px "Cabin";
  color: var(--choc);
  cursor: pointer;
}

.hero {
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
}

.hero-in {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 66px 0 70px;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  margin: 14px 0 16px;
}

.hero p {
  color: var(--mut);
  font-size: 18.5px;
  max-width: 50ch;
}

.pts {
  list-style: none;
  margin: 24px 0 28px;
  display: grid;
  gap: 10px;
}

.pts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16.5px;
}

.tick {
  flex: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--must-soft);
  display: grid;
  place-items: center;
  margin-top: 3px;
}

.acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-img {
  aspect-ratio: 4/3;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--must-soft);
  box-shadow: var(--sh-h);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip {
  background: var(--choc);
  color: #efe4d8;
}

.strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-block: 24px;
  text-align: center;
}

.strip b {
  display: block;
  font-family: "Bitter";
  font-size: 31px;
  color: var(--must);
  line-height: 1.1;
}

.strip span {
  font-size: 13.5px;
}

section {
  padding: 76px 0;
}

.head {
  max-width: 610px;
  margin-bottom: 38px;
}

.head h2 {
  font-size: clamp(27px, 3.5vw, 37px);
  margin: 10px 0 10px;
}

.head p {
  color: var(--mut);
}

.svc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.svc article {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--sh);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}

.svc article:hover {
  box-shadow: var(--sh-h);
  transform: translateY(-2px);
  border-color: var(--beige);
}

.ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--must-soft);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}

.svc h3 {
  font-size: 20px;
  margin-bottom: 7px;
}

.svc p {
  font-size: 15.5px;
  color: var(--mut);
}

.gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gal figure {
  margin: 0;
}

.gal .im {
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--must-soft);
}

.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.gal figure:hover img {
  transform: scale(1.03);
}

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

.ap figure {
  margin: 0;
  position: relative;
}

.ap .im {
  aspect-ratio: 2.2/1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--must-soft);
  line-height: 0;
}

.ap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap .tag {
  position: absolute;
  top: 13px;
  left: 13px;
  background: #fff;
  color: var(--choc);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: "Bitter";
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--sh);
}

.ap .tag.m {
  background: var(--must);
  color: var(--choc);
}

.section-sand {
  background: var(--sand);
}

.section-spacer {
  height: 34px;
}

.avis-sec {
  background: var(--sand);
}

.score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}

.score b {
  font-family: "Bitter";
  font-size: 44px;
  color: var(--choc);
  line-height: 1;
}

.et {
  color: var(--must-dk);
  letter-spacing: 2px;
}

.avis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.avis blockquote {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 26px 24px;
  font-size: 15.5px;
  color: var(--mut);
  box-shadow: var(--sh);
}

.avis blockquote::before {
  content: "\201C";
  font-family: "Bitter";
  font-size: 44px;
  color: var(--must);
  line-height: 0.55;
  display: block;
  margin-bottom: 12px;
}

.avis cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--choc);
}

.zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.zone .map {
  aspect-ratio: 4/3;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--must-soft);
  box-shadow: var(--sh);
}

.zone .map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.zone h2 {
  font-size: clamp(27px, 3.5vw, 37px);
  margin: 10px 0 12px;
}

.zone p {
  color: var(--mut);
}

.vl {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.vl li {
  background: var(--must-soft);
  color: var(--choc);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 14.5px;
  font-weight: 500;
}

.contact {
  background: var(--choc);
  color: #efe4d8;
}

.contact .head h2 {
  color: #fff;
}

.contact .head p {
  color: #cbbdb2;
}

.contact .lab {
  color: var(--must);
}

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

.inf {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 14px;
}

.inf b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--must);
  margin-bottom: 4px;
}

.inf .big {
  font-family: "Bitter";
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.inf .email {
  font-size: 20px;
  overflow-wrap: anywhere;
}

form {
  background: #fff;
  border-radius: var(--rl);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--bd);
  border-radius: 11px;
  padding: 13px 14px;
  font: 400 16px/1.5 "Cabin";
  color: var(--txt);
  background: #fff;
  margin-bottom: 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(193, 102, 107, 0.16);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

form button {
  width: 100%;
  background: var(--terra);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 16px;
  font: 600 18px "Cabin";
  cursor: pointer;
  transition: background 0.16s;
}

form button:hover {
  background: var(--terra-dk);
}

.fine {
  font-size: 14px;
  color: var(--mut);
  text-align: center;
  margin-top: 12px;
}

footer {
  background: #3c332e;
  color: #b6a89e;
  padding: 38px 0 28px;
  font-size: 15px;
}

.fg {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

footer h4 {
  color: #fff;
  font-family: "Bitter";
  font-size: 18px;
  margin-bottom: 10px;
}

footer a {
  color: #ddd0c5;
  text-decoration: none;
  display: block;
  padding: 3px 0;
}

.fb {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 26px;
  padding-top: 18px;
  font-size: 13.5px;
}

.fx {
  display: none;
}

@media (max-width: 900px) {
  .brand img {
    height: 58px;
  }

  nav {
    display: none;
  }

  .burger {
    display: block;
  }

  nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--bd);
    padding: 8px 20px 16px;
  }

  nav.open a {
    border-radius: 0;
    padding: 13px 0;
    border-bottom: 1px solid var(--bd);
  }

  .hnum,
  .hd .btn {
    display: none;
  }

  .hero-in,
  .svc,
  .gal,
  .ap,
  .avis,
  .zone,
  .cts,
  .fg {
    grid-template-columns: 1fr;
  }

  .strip .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  section {
    padding: 54px 0;
  }

  body {
    padding-bottom: 74px;
  }

  .fx {
    display: flex;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--bd);
    padding: 11px 16px;
  }

  .fx a {
    flex: 1;
    text-align: center;
    border-radius: 100px;
    padding: 14px;
    text-decoration: none;
    font: 600 16.5px "Cabin";
  }

  .fx .t {
    background: var(--terra);
    color: #fff;
  }

  .fx .m {
    background: var(--must);
    color: var(--choc);
  }
}

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

:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 2px;
}
