:root {
  --navy: #2c3e50;
  --navy-deep: #1a2833;
  --orange: #e67e22;
  --cream: #f8f5f1;
  --paper: #fffdf9;
  --ink: #1a1a1a;
  --muted: #5c6570;
  --line: rgba(44, 62, 80, 0.12);
  --green: #27ae60;
  --shadow: 0 24px 60px rgba(26, 40, 51, 0.18);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.011em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

h1,
h2,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  background: rgba(248, 245, 241, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
}

.nav a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  place-items: end stretch;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 40, 51, 0.28) 0%, rgba(26, 40, 51, 0.72) 58%, rgba(26, 40, 51, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 72px;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  max-width: 14ch;
}

.hero p.lede {
  max-width: 38ch;
  font-size: 1.12rem;
  color: rgba(248, 245, 241, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
  color: rgba(248, 245, 241, 0.8);
}

.hero-meta strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--navy);
}

/* Services */
.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
}

.card .num {
  font-family: Georgia, serif;
  color: var(--orange);
  font-size: 1.4rem;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Story */
.story {
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.92), rgba(248, 245, 241, 0.92)),
    url("img/linen.png") center / cover;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.story p {
  color: #3a4148;
  font-size: 1.05rem;
}

.quote {
  margin: 0;
  padding: 32px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 22px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.35;
}

.quote span {
  display: block;
  margin-top: 18px;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-list a {
  color: var(--navy);
  font-weight: 600;
}

.visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

input,
select,
textarea {
  font: inherit;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 12px;
}

/* Outlet band */
.outlet {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 72px 0;
}

.outlet-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
}

.outlet h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.outlet p {
  margin: 0;
  max-width: 46ch;
  color: rgba(248, 245, 241, 0.82);
}

.outlet-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

/* Footer */
.site-footer {
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--navy);
}

/* Thanks */
.thanks {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

.thanks h1 {
  font-size: 3rem;
  color: var(--navy);
}

@media (max-width: 900px) {
  .service-grid,
  .story-grid,
  .visit-grid,
  .outlet-inner {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .brand img {
    height: 42px;
  }

  section {
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:hover {
    transform: none;
  }
}
