/* Design tokens and reset */
:root {
  --navy: #0a1128;
  --paper: #fdfbf7;
  --cream: #f4f0e9;
  --bronze: #926d48;
  --gold: #d4ad79;
  --wine: #631616;
  --ink: #182037;
  --muted-text: #5e6470;
  --line: #ded8ce;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', Arial, sans-serif;
  --page-width: 1380px;
  --section-space: clamp(86px, 10vw, 158px);
  --radius-site: 3px;
  --shadow-site: 0 24px 70px rgba(10, 17, 40, 0.12);
}
/* Base elements and shared components */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}
button,
a,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}
::selection {
  background: var(--bronze);
  color: white;
}
.page-container {
  width: min(calc(100% - 96px), var(--page-width));
  margin: auto;
}
.section-pad {
  padding-block: var(--section-space);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  color: var(--gold);
}
.eyebrow.dark {
  color: var(--bronze);
}
.eyebrow .line {
  height: 1px;
  width: 60px;
  background: currentColor;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}
h1 {
  font-family: inherit;
}
h2 {
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h2 em,
h1 em {
  font-weight: 500;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius-site);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-gold {
  color: #171620;
  background: var(--gold);
}
.btn-gold:hover {
  background: #f0c899;
}
.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
}
.btn-outline-light:hover {
  color: var(--navy);
  background: white;
}
.btn-dark {
  color: white;
  background: var(--navy);
}
.btn-dark:hover {
  background: #26365b;
}
.btn-wine {
  color: white;
  background: var(--wine);
}
.btn-wine:hover {
  background: #842b2b;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  margin-top: 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--bronze);
  font-size: 13px;
  font-weight: 700;
}
.text-link:hover {
  color: var(--bronze);
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 14px;
  z-index: 200;
  background: white;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
/* Announcement and navigation */
.announcement {
  position: relative;
  z-index: 60;
  background: #101b31;
  color: #e4dfd7;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.09em;
  padding: 9px 48px;
}
.announcement[hidden] {
  display: none;
}
.announcement button {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: inherit;
  padding: 2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  height: 84px;
  margin-bottom: -84px;
  color: white;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 17, 40, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.header-inner {
  width: min(calc(100% - 96px), var(--page-width));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  white-space: nowrap;
  font-size: 19px;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0.065em;
}
.brand small {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.28em;
}
.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 42px;
  height: 48px;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: 33px;
  letter-spacing: -0.13em;
}
.brand-mark span {
  font-size: 20px;
}
.brand-logo {
  display: block;
  width: 190px;
  height: 71px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 30px);
  margin-left: auto;
}
.desktop-nav a {
  font-size: 12px;
  font-weight: 500;
  color: #f2eee9;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--gold);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  border-radius: var(--radius-site);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-cta:hover {
  background: #f0c899;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-site);
  background: white;
  color: var(--navy);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}
.header-phone:hover {
  background: var(--cream);
  color: var(--navy);
}
.mobile-nav .mobile-nav-phone {
  justify-content: flex-start;
  gap: 12px;
  font: 600 16px var(--body);
  color: var(--gold);
}
.mobile-toggle,
.mobile-nav {
  display: none;
}
/* Hero */
.hero {
  position: relative;
  min-height: max(730px, calc(100svh - 32px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.hero-image {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 13, 29, 0.91) 0%,
      rgba(6, 13, 29, 0.77) 35%,
      rgba(6, 13, 29, 0.19) 75%
    ),
    linear-gradient(0deg, rgba(6, 13, 29, 0.43), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 95px;
}
.hero h1 {
  font-family: var(--display);
  max-width: 830px;
  font-size: clamp(66px, 7.5vw, 122px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin: 28px 0 30px;
}
.hero h1 em {
  color: #edc695;
}
.hero-content > p {
  max-width: 570px;
  color: #e6e6e4;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-bottom {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #e1dfdc;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-separator {
  color: var(--gold);
  padding-inline: 10px;
}
/* Introduction */
.intro-section {
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(60px, 9vw, 160px);
  align-items: end;
}
.intro-grid h2 {
  max-width: 730px;
  margin: 25px 0 0;
}
.intro-grid > div:last-child {
  max-width: 420px;
  padding-bottom: 5px;
}
.intro-grid p,
.about-copy p,
.section-heading p,
.faq-intro p {
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.85;
}
.intro-grid .lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 70px;
}
.trust-item {
  position: relative;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 27px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d9c9b4;
  border-radius: 50%;
  color: var(--bronze);
}
.trust-label {
  max-width: 230px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.trust-number {
  position: absolute;
  right: 27px;
  top: 27px;
  color: var(--bronze);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
/* Introduction color overrides */
.intro-section {
  background: var(--gold);
  color: var(--navy);
}
.intro-section .eyebrow.dark,
.intro-section h2 em,
.intro-section .trust-number {
  color: var(--navy);
}
.intro-section .intro-grid p {
  color: var(--ink);
}
.intro-section .intro-grid .lead {
  font-family: var(--display);
  font-size: clamp(27px, 2.5vw, 35px);
  line-height: 1.25;
  color: var(--navy);
}
.intro-section .text-link {
  color: var(--navy);
  border-color: var(--navy);
}
.intro-section .text-link:hover {
  color: var(--wine);
}
.intro-section .trust-item {
  background: var(--paper);
  border-color: rgba(10, 17, 40, 0.27);
}
.intro-section .trust-icon {
  color: var(--navy);
  border-color: var(--navy);
}
.intro-section .trust-label {
  color: var(--navy);
  font-size: 16px;
}
/* About */
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 180px);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image {
  width: 100%;
  height: clamp(460px, 46vw, 680px);
  object-fit: cover;
}
.image-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--bronze);
  font-weight: 700;
}
.about-copy h2 {
  margin: 26px 0 31px;
}
.about-copy p {
  max-width: 530px;
}
.values {
  margin-top: 46px;
  border-top: 1px solid #d2c9bc;
}
.values div {
  display: flex;
  gap: 35px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid #d2c9bc;
  font-family: var(--display);
  font-size: 25px;
}
.values span {
  font: 700 11px var(--body);
  color: var(--bronze);
}
/* Services */
.services-section {
  background: var(--navy);
  color: white;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}
.section-heading h2 {
  max-width: 770px;
  margin: 25px 0 0;
}
.section-heading > p {
  max-width: 345px;
  margin: 0 0 5px;
}
.services-section .section-heading > p {
  color: #c0c6d0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.21);
  border-left: 1px solid rgba(255, 255, 255, 0.21);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px 24px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.21);
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  transition: background 0.3s;
}
.service-card:hover {
  background: #172744;
}
.service-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: var(--gold);
}
.service-top span {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.service-card h3 {
  font-size: 27px;
  line-height: 1.04;
  margin: 37px 0 13px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #b7bfca;
  margin-bottom: 20px;
}
.service-card button {
  display: flex;
  align-items: center;
  gap: 9px;
  align-self: start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}
/* Publishing process */
.process-section {
  background: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.process-step {
  min-width: 0;
}
.step-index {
  display: block;
  font-family: var(--display);
  font-size: 58px;
  color: var(--bronze);
  line-height: 1;
}
.step-rule {
  display: block;
  height: 1px;
  background: var(--bronze);
  margin: 22px 0 26px;
  position: relative;
}
.step-rule:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  right: 0;
  top: -2px;
}
.process-step h3 {
  font-size: 29px;
  line-height: 1.05;
  margin: 0 0 13px;
}
.process-step p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted-text);
}
/* Portfolio */
.portfolio-section {
  background: #f0ebe3;
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.portfolio-filters button {
  padding: 10px 17px;
  border: 1px solid #cfc7bb;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  transition: all 0.2s;
}
.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.project-card {
  min-width: 0;
  display: block;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
}
.project-art {
  display: block;
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #d4cbbd;
}
.project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.project-meta small {
  display: block;
  color: var(--bronze);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.project-meta strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}
.project-meta svg {
  transition: transform 0.2s;
}
.project-card:hover .project-meta svg {
  transform: translate(3px, -3px);
}
/* Testimonials */
.testimonials-section {
  background: var(--navy);
  color: white;
  text-align: center;
}
.testimonial-inner {
  max-width: 860px;
}
.testimonial-inner .eyebrow {
  justify-content: center;
}
.large-quote {
  height: 70px;
  margin-top: 32px;
  font-family: var(--display);
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
}
.testimonial-inner h2 {
  margin: 12px 0 22px;
}
.testimonial-inner p {
  max-width: 620px;
  margin: 0 auto;
  color: #d3d6dc;
  font-size: 17px;
  line-height: 1.7;
}
.sample-label {
  display: block;
  margin-top: 36px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}
/* Pricing */
.pricing-section {
  background: var(--paper);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-site);
}
.pricing-card.featured {
  border-color: var(--gold);
  background: #1e1c16;
  color: white;
  box-shadow: 0 12px 30px rgba(10, 17, 40, 0.12);
}
.pricing-ribbon {
  background: #e2a309;
  color: var(--navy);
  padding: 9px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.pricing-header {
  padding: 28px 30px 24px;
}
.pricing-header > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: var(--bronze);
}
.featured .pricing-header > span {
  color: var(--gold);
}
.pricing-header h3 {
  font-size: 39px;
  margin: 12px 0 12px;
  line-height: 1;
}
.pricing-header p {
  margin: 0;
  min-height: 42px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-text);
}
.featured .pricing-header p {
  color: #dedbd4;
}
.pricing-body {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-price {
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 43px;
  font-weight: 700;
}
.pricing-price em {
  color: var(--bronze);
}
.featured .pricing-price {
  border-color: rgba(255, 255, 255, 0.16);
}
.featured .pricing-price em {
  color: var(--gold);
}
.pricing-body ul {
  list-style: none;
  padding: 12px 0 18px;
  margin: 0;
}
.pricing-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.55;
  margin: 11px 0;
}
.pricing-body li svg {
  flex: none;
  color: var(--bronze);
  margin-top: 2px;
}
.featured .pricing-body li svg {
  color: var(--gold);
}
.pricing-body .btn {
  width: 100%;
  margin-top: auto;
}
.pricing-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-text);
  margin-top: 24px;
}
/* Frequently asked questions */
.faq-section {
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 160px);
}
.faq-intro h2 {
  margin: 26px 0;
}
.faq-list {
  border-top: 1px solid #cec5b8;
}
.faq-item {
  border-bottom: 1px solid #cec5b8;
}
.faq-item h3 {
  margin: 0;
  font-family: var(--body);
}
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 21px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.faq-item button svg {
  flex: none;
  color: var(--bronze);
  transition: transform 0.25s;
}
.faq-item.expanded button svg {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.3s ease,
    opacity 0.3s ease;
}
.faq-item.expanded .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-answer p {
  overflow: hidden;
  max-width: 650px;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.8;
  padding: 0 30px 0 0;
  margin: 0;
}
.faq-item.expanded .faq-answer p {
  padding-bottom: 22px;
}
/* Contact call to action */
.final-cta {
  background: radial-gradient(circle at 80% 20%, #283657 0%, transparent 40%), var(--navy);
  color: white;
  text-align: center;
}
.final-inner {
  max-width: 850px;
}
.final-inner .eyebrow {
  justify-content: center;
}
.final-inner h2 {
  margin: 30px 0 24px;
  font-size: clamp(56px, 6.6vw, 102px);
}
.final-inner h2 em {
  color: var(--gold);
}
.final-inner p {
  max-width: 570px;
  margin: 0 auto;
  color: #d7d9de;
  font-size: 16px;
  line-height: 1.8;
}
.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
/* Footer */
.footer {
  background: #070d1e;
  color: #e6e9ef;
  padding: 85px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 60px;
}
.footer-brand p {
  max-width: 270px;
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.8;
  color: #b6bcc8;
}
.footer h3 {
  font: 700 10px var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) button {
  display: block;
  margin: 0 0 12px;
  font-size: 12px;
  color: #d5d9e1;
}
.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--gold) !important;
}
.footer-grid p {
  font-size: 12px;
  color: #b6bcc8;
  line-height: 1.75;
}
.footer-contact {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #29344a;
  padding-top: 23px;
  margin-top: 70px;
  color: #aab1be;
  font-size: 11px;
}
.footer-bottom div {
  display: flex;
  gap: 24px;
}
.footer-bottom button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}
.footer-bottom a:hover,
.footer-bottom button:hover {
  color: white;
}
/* Dialogs and inquiry forms */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  background: rgba(5, 9, 20, 0.72);
  animation: fade-in 0.25s ease;
}
.modal-panel {
  position: relative;
  width: min(650px, 100%);
  height: 100%;
  overflow-y: auto;
  background: var(--paper);
  padding: clamp(28px, 5vw, 70px);
  box-shadow: var(--shadow-site);
  animation: slide-in 0.35s ease;
  overscroll-behavior: contain;
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
}
.form-modal,
.legal-modal {
  clear: both;
  padding-top: 20px;
}
.form-modal h2,
.legal-modal h2,
.project-modal h2 {
  font-size: clamp(45px, 5vw, 65px);
  margin: 18px 0 14px;
}
.form-intro,
.legal-modal p,
.project-modal p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted-text);
}
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
  margin-top: 25px;
}
.form-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.form-fields .field-wide {
  grid-column: 1/-1;
}
.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid #c7c3bb;
  border-radius: 2px;
  background: white;
  color: var(--navy);
  font-size: 13px;
  font-weight: 400;
}
.form-fields textarea {
  resize: vertical;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 16px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted-text);
}
.consent-field input {
  margin-top: 3px;
  accent-color: var(--wine);
}
.form-submit {
  min-width: 240px;
}
.form-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}
.form-error {
  color: #961c1c;
  font-size: 12px;
}
.form-success {
  padding: 40px 0;
}
.form-success svg {
  color: var(--bronze);
}
.form-success h3 {
  font-size: 34px;
  margin: 17px 0 10px;
}
.form-success p {
  line-height: 1.7;
  color: var(--muted-text);
}
.project-modal {
  clear: both;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 35px;
}
.project-modal-art {
  background: var(--cream);
  min-height: 350px;
}
.project-modal-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
}
.project-modal h3 {
  font-size: 27px;
  margin: 30px 0 7px;
}
.sample-disclaimer {
  font-size: 11px !important;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.legal-modal p {
  margin-bottom: 18px;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-in {
  from {
    transform: translateX(40px);
    opacity: 0.8;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Responsive: small desktops */
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 15px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .header-inner {
    gap: 18px;
  }
  .header-cta {
    font-size: 10px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Responsive: tablets */
@media (max-width: 900px) {
  .page-container,
  .header-inner {
    width: min(calc(100% - 48px), var(--page-width));
  }
  .site-header {
    height: 72px;
    margin-bottom: -72px;
  }
  .desktop-nav,
  .header-cta,
  .header-phone {
    display: none;
  }
  .mobile-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: transparent;
    color: white;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 54;
    background: var(--navy);
    color: white;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition:
      visibility 0.3s,
      opacity 0.3s,
      transform 0.3s;
    overflow-y: auto;
  }
  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-nav-inner {
    padding: 115px 28px 40px;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav a,
  .mobile-nav button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid #394358;
    background: none;
    color: white;
    font-family: var(--display);
    font-size: 32px;
    text-align: left;
  }
  .mobile-nav button {
    font-family: var(--body);
    font-size: 14px;
    color: var(--gold);
    margin-top: 18px;
  }
  .intro-grid,
  .about-grid,
  .faq-grid {
    gap: 45px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 45px;
  }
}
/* Responsive: phones */
@media (max-width: 700px) {
  :root {
    --section-space: 80px;
  }
  .page-container,
  .header-inner {
    width: calc(100% - 38px);
  }
  .announcement {
    font-size: 9px;
    line-height: 1.5;
    padding: 8px 36px;
  }
  .announcement button {
    right: 13px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    width: 37px;
    height: 43px;
    font-size: 29px;
  }
  .brand-logo {
    width: 155px;
    height: 58px;
  }
  .hero {
    min-height: 760px;
    min-height: calc(100svh - 30px);
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 13, 29, 0.85), rgba(6, 13, 29, 0.44)),
      linear-gradient(0deg, rgba(6, 13, 29, 0.55), transparent 65%);
  }
  .hero-image {
    object-position: 65% center;
  }
  .hero-content {
    padding-top: 104px;
    padding-bottom: 85px;
  }
  .hero h1 {
    font-size: clamp(57px, 12vw, 82px);
    max-width: 600px;
    margin: 22px 0;
  }
  .hero-content > p {
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 27px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 310px;
  }
  .hero-bottom {
    bottom: 19px;
    font-size: 9px;
  }
  .hero-bottom > span {
    display: none;
  }
  h2 {
    font-size: clamp(47px, 11vw, 68px);
  }
  .intro-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-grid h2 {
    margin-bottom: 0;
  }
  .trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 47px;
  }
  .trust-item {
    min-height: 94px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 20px;
  }
  .trust-label {
    flex: 1;
    max-width: none;
  }
  .trust-number {
    position: static;
    flex: none;
  }
  .about-image {
    height: 460px;
  }
  .about-copy h2 {
    margin-top: 18px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    min-height: 275px;
    padding: 22px 17px;
  }
  .service-card h3 {
    font-size: 24px;
    margin-top: 25px;
  }
  .service-card p {
    font-size: 11px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }
  .project-title {
    font-size: clamp(22px, 5vw, 38px);
  }
  .project-meta strong {
    font-size: 22px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-body {
    min-height: 0;
  }
  .pricing-body .btn {
    margin-top: 15px;
  }
  .footer {
    padding-top: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    margin-top: 40px;
  }
  .project-modal {
    grid-template-columns: 1fr;
  }
  .project-modal-art,
  .project-modal-image {
    height: 320px;
    min-height: 0;
  }
}
/* Responsive: narrow phones */
@media (max-width: 390px) {
  .hero h1 {
    font-size: 55px;
  }
  .hero-content > p {
    font-size: 13px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card {
    min-height: 300px;
    padding: 18px 12px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .process-grid {
    gap: 18px;
  }
  .process-step h3 {
    font-size: 25px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-meta small {
    font-size: 8px;
  }
  .project-meta strong {
    font-size: 20px;
  }
  .form-fields {
    grid-template-columns: 1fr;
  }
  .modal-panel {
    padding: 22px;
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.hidden {
  display: none;
}
@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
}
[hidden] {
  display: none !important;
}
