:root {
  --ink: #1d1712;
  --muted: #76685c;
  --paper: #f6eddf;
  --cream: #fffaf0;
  --copper: #b65b33;
  --clay: #d89c67;
  --moss: #314538;
  --charcoal: #27211c;
  --line: rgba(29, 23, 18, 0.16);
  --shadow: 0 24px 80px rgba(49, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 156, 103, 0.28), transparent 34rem),
    radial-gradient(circle at 86% 6%, rgba(49, 69, 56, 0.18), transparent 30rem),
    linear-gradient(135deg, #fbf5e9 0%, var(--paper) 46%, #eadac3 100%);
  color: var(--ink);
  font-family: "Anybody", "Gill Sans", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 16px 0 56px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 12px 36px rgba(49, 35, 24, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

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

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a,
.lang-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  padding: 10px 14px;
  text-decoration: none;
}

.nav-links a:hover,
.lang-button:hover,
.lang-button.is-active {
  background: rgba(29, 23, 18, 0.08);
  color: var(--ink);
}

.language-switcher {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.95;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 10vw, 8.7rem);
  letter-spacing: -0.075em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 5.3rem);
  letter-spacing: -0.06em;
}

h3 {
  font-size: 1.08rem;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 700;
  padding: 0 22px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(29, 23, 18, 0.22);
  color: var(--cream);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.56);
  color: var(--ink);
}

.hero-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 44px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(49, 69, 56, 0.96), rgba(39, 33, 28, 0.98));
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 32px;
  content: "";
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 31, 26, 0.12) 0%, rgba(24, 31, 26, 0.42) 46%, rgba(24, 31, 26, 0.9) 100%),
    linear-gradient(90deg, rgba(24, 31, 26, 0.84) 0%, rgba(24, 31, 26, 0.18) 52%, rgba(24, 31, 26, 0.46) 100%);
  content: "";
}

.portrait-card {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(310px, calc(100% - 56px));
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 26px;
  background: rgba(255, 250, 240, 0.1);
  color: var(--cream);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.portrait-card p,
.portrait-card span {
  margin: 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.82rem;
}

.portrait-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.3rem;
  line-height: 0.9;
}

.scissor-line {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 250, 240, 0.72);
  border-radius: 50%;
}

.scissor-line::before,
.scissor-line::after {
  display: block;
  width: 44px;
  height: 2px;
  margin: 26px 0 0 6px;
  background: rgba(255, 250, 240, 0.7);
  content: "";
}

.scissor-line::after {
  margin-top: -2px;
  transform: rotate(45deg);
}

.hero-brand-lockup,
.portrait-card,
.hero-spotlight,
.hero-note {
  z-index: 2;
}

.hero-brand-lockup {
  position: absolute;
  left: 28px;
  bottom: 106px;
  max-width: 250px;
  color: var(--cream);
}

.hero-brand-lockup p,
.hero-brand-lockup span {
  margin: 0;
}

.hero-brand-lockup p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-brand-lockup h2 {
  margin: 8px 0 5px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.hero-brand-lockup span {
  color: rgba(255, 250, 240, 0.8);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02) brightness(0.68);
}

.hero-spotlight {
  position: absolute;
  right: 28px;
  bottom: 118px;
  width: min(220px, calc(100% - 56px));
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.1);
  color: var(--cream);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-spotlight p,
.hero-spotlight span {
  margin: 0;
}

.hero-spotlight p {
  margin-bottom: 8px;
  color: rgba(255, 250, 240, 0.96);
  font-weight: 700;
}

.hero-spotlight span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 250, 240, 0.76);
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 74px 0 92px;
}

.intro-grid article,
.service-list article,
.team-grid article,
.hours-card,
.visit-card {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 250, 240, 0.56);
  box-shadow: 0 18px 54px rgba(49, 35, 24, 0.08);
  backdrop-filter: blur(14px);
}

.intro-grid article {
  border-radius: 30px;
  padding: 26px;
}

.intro-grid span {
  display: block;
  margin-bottom: 50px;
  color: var(--copper);
  font-weight: 700;
}

.intro-grid h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.intro-grid p,
.gallery-heading p,
.service-list p,
.team-grid p,
.visit-card p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 92px 0;
}

.gallery-heading,
.split-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.gallery-heading {
  align-items: end;
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--charcoal);
  box-shadow: 0 16px 42px rgba(49, 35, 24, 0.12);
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card-tall {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 420ms ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

.photo-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(29, 23, 18, 0.7);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 9px 12px;
  backdrop-filter: blur(10px);
}

.gallery-source {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 28px;
  padding: 28px;
}

.service-list h3,
.service-list p {
  margin-bottom: 0;
}

.service-list h3 {
  max-width: 18ch;
  line-height: 1.05;
}

.service-list p {
  max-width: 58ch;
  line-height: 1.55;
}

.service-list strong {
  color: var(--copper);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1;
}

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

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

.team-grid article {
  min-height: 230px;
  border-radius: 30px;
  padding: 24px;
}

.team-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.visit-card,
.hours-card {
  border-radius: 36px;
  padding: 32px;
}

.visit-card h2 {
  margin-bottom: 20px;
}

.hours-card h3 {
  margin: 0 0 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.hours-card dt {
  color: var(--muted);
}

.hours-card dd {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 34px 0 44px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--copper);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .gallery-heading,
  .split-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intro-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    margin-bottom: 34px;
  }

  .brand small {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-card {
    min-height: 480px;
  }

  .hero-brand-lockup {
    left: 20px;
    bottom: 92px;
    max-width: 220px;
  }

  .hero-spotlight {
    display: none;
  }

  .hero-note {
    flex-direction: column;
  }

  .intro-grid,
  .team-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-large,
  .photo-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .section {
    padding: 64px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
