:root {
  --paper: #ffffff;
  --white: #ffffff;
  --paper-soft: #f6f1ea;
  --ink: #171717;
  --ink-soft: #5c5751;
  --line: #e7dfd4;
  --maxw: 1280px;
  --pad: clamp(18px, 3vw, 42px);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) 56px;
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav a:hover,
.nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
}

.lang-btn {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.lang-btn + .lang-btn {
  border-left: 1px solid var(--line);
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  align-items: stretch;
  padding: 18px 0 0;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(56px, 7vw, 84px) clamp(28px, 3vw, 42px) clamp(34px, 4vw, 60px) 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 360px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-copy h1,
.section-heading h2,
.panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(4rem, 6.2vw, 6.6rem);
}

.hero-copy .hero-title-sub {
  display: block;
  margin-top: 18px;
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.9vw, 2.05rem);
  line-height: 1.05;
  font-weight: 500;
}

.hero-subtitle,
.section-heading p,
.panel p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.hero-subtitle {
  margin: 18px 0 28px;
  max-width: 270px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.promo-strip {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.promo-heading {
  margin-bottom: 18px;
}

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

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.04);
}

.promo-card-dark {
  background: linear-gradient(160deg, var(--ink) 0%, #24201a 100%);
  color: var(--white);
}

.promo-card-light {
  background: linear-gradient(160deg, #fffdf8 0%, #f5eee3 100%);
}

.promo-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-logo {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  object-fit: contain;
  padding: 6px;
  background: #f7f3ea;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-logo-light {
  background: #fff;
  border-color: rgba(23, 23, 23, 0.08);
}

.promo-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
  margin-bottom: 6px;
}

.promo-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.1vw, 2.35rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.promo-card p {
  font-size: 15px;
  line-height: 1.75;
  color: inherit;
  opacity: 0.82;
  max-width: 52ch;
}

.promo-card-light p {
  color: var(--ink-soft);
  opacity: 1;
}

.promo-btn {
  align-self: flex-start;
}

.promo-btn-light {
  background: var(--ink);
  color: var(--white);
}

.promo-btn-light:hover,
.promo-btn-light:focus-visible {
  background: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: #000;
}

.btn-wide {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.portrait-frame {
  position: relative;
  height: 100%;
  min-height: 640px;
  overflow: hidden;
  background: #f1ece5;
}

.portrait-frame picture,
.portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portrait-frame img {
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 180ms ease;
}

.portrait-frame.has-image img {
  opacity: 1;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.portrait-frame.has-image .portrait-fallback {
  opacity: 0;
}

.portrait-fallback span {
  display: none;
}

.portrait-fallback small {
  display: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.42fr 0.82fr;
  gap: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  align-items: stretch;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  height: 100%;
}

.about-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  height: 100%;
  min-height: 420px;
}

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

.panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.panel h2 {
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  margin: 8px 0 12px;
}

.about-panel p {
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.9;
}

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

.timeline-item {
  display: grid;
  gap: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.timeline-item strong {
  font-size: 15px;
  font-weight: 700;
}

.timeline-item span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.75;
}

.services,
.portfolio,
.faq,
.contact {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 180px 1.1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.section-heading p {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.85;
}

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

.service-card,
.portfolio-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card {
  padding: 18px;
  min-height: 160px;
}

.service-card strong,
.portfolio-copy h3 {
  font-size: 14px;
  font-weight: 700;
}

.service-card p,
.portfolio-copy p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 10px;
}

.service-index {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

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

.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-soft);
}

.portfolio-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-copy {
  padding: 16px 16px 18px;
}

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

.faq-card {
  padding: 20px 20px 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.contact-strip {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 24px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.contact-label,
.availability span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.availability {
  padding: 20px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.availability strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-grid label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.form-grid textarea {
  resize: vertical;
  min-height: 150px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--ink);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 28px;
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .promo-grid,
  .intro-grid,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .portfolio-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px 0 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-copy .hero-title-sub {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .promo-card {
    padding: 20px;
  }

  .service-grid,
  .portfolio-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 16px, var(--maxw));
    padding-left: 0;
    padding-right: 0;
  }

  .topbar {
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .brand,
  .lang-switch,
  .nav {
    margin: 0 var(--pad);
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 24px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .panel {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 16vw, 4.4rem);
  }

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

  .btn {
    width: 100%;
  }

  .promo-btn {
    width: 100%;
  }
}
