:root {
  --ink: #17202f;
  --muted: #626866;
  --paper: #f6f1e9;
  --white: #fffdf8;
  --red: #a96b5f;
  --ochre: #c9ad66;
  --green: #667f76;
  --line: rgba(23, 32, 47, 0.14);
  --shadow: 0 24px 70px rgba(23, 32, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand-wordmark {
  position: relative;
  display: block;
  padding-bottom: 7px;
}

.brand-wordmark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 5px;
  background: linear-gradient(90deg, #d8a79a, #d9c989, #9fb8bd);
}

.brand strong {
  font-size: 1.42rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 47, 0.88) 0%, rgba(23, 32, 47, 0.64) 36%, rgba(23, 32, 47, 0.16) 100%),
    linear-gradient(0deg, rgba(23, 32, 47, 0.68), rgba(23, 32, 47, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 10vh, 96px) clamp(18px, 7vw, 92px);
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button.secondary {
  color: var(--white);
}

.intro,
.premises,
.services,
.shop-band,
.about,
.store-gallery,
.team,
.contact {
  padding: clamp(54px, 9vw, 108px) clamp(18px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
  background: var(--white);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro > p,
.premises-heading > p:not(.section-label),
.shop-copy p,
.contact p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.premises {
  background: var(--white);
  padding-top: 0;
}

.premises-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 12px clamp(24px, 6vw, 88px);
  align-items: end;
  margin-bottom: 28px;
}

.premises-heading .section-label { grid-column: 1 / -1; }
.premises-heading > p:not(.section-label) { margin-bottom: 0; }

.premises-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.premises-gallery figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.premises-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.premises-gallery figure:first-child img { object-position: 48% 56%; }
.premises-gallery figure:last-child img { object-position: 50% 52%; }

.color-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 78px;
  background: var(--white);
}

.color-strip span {
  background: var(--swatch);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(23, 32, 47, 0.06);
}

.service-grid span {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 62px;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.service-grid p,
.shop-list span,
.contact-panel dd {
  color: var(--muted);
  line-height: 1.65;
}

.shop-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: center;
  background: var(--green);
  color: var(--white);
}

.shop-copy p {
  color: rgba(255, 253, 248, 0.82);
}

.shop-copy .shop-highlight {
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(23, 32, 47, 0.22);
  border-left: 5px solid var(--ochre);
  font-weight: 700;
}

.shop-list {
  display: grid;
  gap: 12px;
}

.shop-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.shop-list div:last-child {
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
}

.shop-list strong {
  font-size: 1.15rem;
}

.shop-list span {
  color: rgba(255, 253, 248, 0.76);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  background: var(--white);
}

.about-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.about-card h2 {
  margin-bottom: 22px;
}

.about-card p:not(.section-label),
.about-wide p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.75;
}

.store-gallery {
  background: var(--ink);
  color: var(--white);
}

.store-gallery .section-heading > p:last-child {
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.store-carousel {
  position: relative;
  overflow: hidden;
  background: #0e1520;
  box-shadow: var(--shadow);
}

.store-gallery-track {
  display: flex;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-gallery-track figure {
  flex: 0 0 100%;
  height: clamp(360px, 58vw, 720px);
  margin: 0;
  overflow: hidden;
}

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

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--white);
  background: rgba(23, 32, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button:hover { background: var(--red); }
.carousel-button.previous { left: 18px; }
.carousel-button.next { right: 18px; }

.carousel-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(23, 32, 47, 0.82);
  font-size: 0.85rem;
  font-weight: 800;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-facts div {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.about-facts div:nth-child(2) {
  background: var(--red);
}

.about-facts div:nth-child(3) {
  background: var(--green);
}

.about-facts div:nth-child(4) {
  color: var(--ink);
  background: var(--ochre);
}

.about-facts strong {
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.about-facts span {
  line-height: 1.45;
}

.about-wide {
  grid-column: 1 / -1;
  padding: 30px clamp(26px, 4vw, 44px);
  border-left: 8px solid var(--red);
  background: rgba(201, 173, 102, 0.15);
}

.about-wide p {
  max-width: 980px;
  margin-bottom: 0;
}

.team {
  background:
    linear-gradient(90deg, rgba(201, 173, 102, 0.12), rgba(169, 107, 95, 0.08)),
    var(--paper);
}

.team .section-heading p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.team-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(23, 32, 47, 0.06);
}

.team-symbol {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 52px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
}

.team-photo {
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 12px 30px rgba(23, 32, 47, 0.16);
}

.team-grid article:nth-child(2) .team-symbol {
  background: var(--red);
}

.team-grid article:nth-child(3) .team-symbol {
  background: var(--green);
}

.team-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.team-email {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.team-email:hover {
  color: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  gap: clamp(24px, 6vw, 84px);
  background: var(--white);
}

.contact-panel {
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

dl,
dd {
  margin: 0;
}

.contact-panel div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.17);
}

.contact-panel div:first-child {
  padding-top: 0;
}

.contact-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.08rem;
}

.inquiry-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-top: 12px;
  padding: clamp(26px, 5vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.form-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.form-heading p:last-child,
.form-note {
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.inquiry-form textarea { resize: vertical; }

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(169, 107, 95, 0.22);
  border-color: var(--red);
}

.form-submit {
  justify-self: start;
  min-height: 50px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-submit:hover { background: var(--ink); }

.contact-image {
  grid-column: 1 / -1;
  height: clamp(300px, 48vw, 620px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(23, 32, 47, 0.84) 0%, rgba(23, 32, 47, 0.56) 48%, rgba(23, 32, 47, 0.2) 100%),
      linear-gradient(0deg, rgba(23, 32, 47, 0.68), rgba(23, 32, 47, 0));
  }

  .hero-content {
    margin: 0 auto 40px;
  }

  .intro,
  .premises-heading,
  .shop-band,
  .about,
  .contact,
  .team-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .premises-gallery { grid-template-columns: 1fr; }

  .premises-gallery figure,
  .premises-gallery img { min-height: 280px; }

  .hero img { object-position: 45% center; }

  .service-grid article {
    min-height: auto;
  }

  .service-grid span {
    margin-bottom: 34px;
  }

  .team-symbol {
    margin-bottom: 34px;
  }

  .shop-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-wide {
    border-left: 0;
    border-top: 8px solid var(--red);
  }

  footer {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .store-gallery-track figure { height: 340px; }
  .carousel-button { width: 44px; height: 44px; }
}

@media (max-width: 520px) {
  nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .color-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
