@font-face {
  font-family: "Circo";
  src: url("../font/circo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --paper: #f7f7f4;
  --ink: #141414;
  --muted: #686868;
  --line: #e4e4df;
  --dark: #111111;
  --accent: #c18d37;
  --accent-soft: #f3eadb;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(193, 141, 55, 0.10), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(70, 80, 140, 0.07), transparent 28%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 10px 38px rgba(20, 20, 20, 0.04);
}

.nav {
  min-height: 130px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(20, 20, 20, 0.08));
}

.links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.links a {
  padding: 11px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #323232;
  font-weight: 760;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.links a:hover {
  color: var(--accent);
  background: rgba(193, 141, 55, 0.10);
  transform: translateY(-1px);
}

.links .quote {
  margin-left: 10px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding-inline: 18px;
  box-shadow: 0 14px 35px rgba(20, 20, 20, 0.14);
}

.links .quote:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  padding: 70px 0 54px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(28px);
}

.hero::before {
  width: 300px;
  height: 300px;
  left: -150px;
  top: 40px;
  background: radial-gradient(circle, rgba(193, 141, 55, 0.18), transparent 68%);
}

.hero::after {
  width: 380px;
  height: 380px;
  right: -180px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(70, 80, 140, 0.11), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.kicker,
.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 850;
  margin-bottom: 18px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  max-width: 650px;
}

h1.hero-title,
h2.hero-title,
.section-title h2.hero-title,
.split-copy h2.hero-title,
.contact-text h2.hero-title {
  font-family: "Circo", Georgia, serif;
  font-size: clamp(1.3rem, 1.85vw, 1.95rem);
  line-height: 1.36;
  font-weight: 400;
  letter-spacing: 0.025em;
  max-width: 540px;
  text-wrap: balance;
}

.hero .hero-title {
  font-size: clamp(1.4rem, 2.05vw, 2.2rem);
  line-height: 1.36;
  max-width: 540px;
}

h1.hero-title .sep,
h2.hero-title .sep,
.hero-title .sep {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.24em;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0.26em;
  transform: translateY(-0.22em);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  max-width: 590px;
  margin: 24px 0 0;
}

.hero-copy-secondary {
  margin-top: 16px;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #111111, #29241d);
  color: #fff;
}

.btn.primary:hover,
.submit:hover,
.links .quote:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn.primary:hover,
.btn.secondary:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.82);
}

.btn.secondary:hover {
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 20, 20, 0.10);
}

.card {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media,
.split-photo {
  position: relative;
  border-radius: 30px;
  isolation: isolate;
}

.hero-media::before,
.split-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-media::after,
.split-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.16));
}

.hero-media img,
.split-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  min-height: 470px;
  transition: transform 0.7s ease;
}

.split-photo img {
  min-height: 420px;
  transition: transform 0.7s ease;
}

.hero-media:hover img,
.split-photo:hover img {
  transform: scale(1.03);
}

.intro-band {
  background: transparent;
  border-top: 1px solid rgba(20, 20, 20, 0.06);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  padding: 38px 0;
}

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

.intro-row p {
  position: relative;
  min-height: 145px;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  line-height: 1.75;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(247, 247, 244, 0.86));
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.05);
  overflow: hidden;
}

.intro-row p::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(193, 141, 55, 0.15), transparent 68%);
}

.intro-row strong {
  display: block;
  font-family: "Circo", Georgia, serif;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}

section {
  padding: 80px 0;
}

.section-title {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 34px;
}

.section-title h2,
.split-copy h2,
.contact-text h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
}

.section-title h2.hero-title,
.split-copy h2.hero-title,
.contact-text h2.hero-title {
  font-size: clamp(1.3rem, 1.85vw, 1.95rem);
  line-height: 1.36;
}

.section-title p,
.split-copy p,
.contact-text p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-copy p + p,
.about-copy p + p {
  margin-top: 16px;
}

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

.service {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 244, 0.86));
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.05);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.service::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(193, 141, 55, 0.16), transparent 68%);
}

.service:hover {
  background:
    linear-gradient(145deg, #ffffff, #f8f2e8);
  transform: translateY(-5px);
  border-color: rgba(193, 141, 55, 0.28);
  box-shadow: 0 26px 70px rgba(20, 20, 20, 0.10);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 64px;
  height: 64px;
  margin: 0 0 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.service:hover .service-icon {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.service h3 {
  position: relative;
  z-index: 1;
  font-family: "Circo", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  line-height: 1.24;
  letter-spacing: 0.025em;
  margin: 0 0 12px;
}

.service p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 0%, rgba(193, 141, 55, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 244, 0.88));
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.07);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.gallery-card figcaption {
  padding: 20px 22px 22px;
  background: #fff;
}

.gallery-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.gallery-card span {
  color: var(--muted);
  line-height: 1.65;
}

.gallery-carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(12px, 2vw, 22px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(193, 141, 55, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(70, 80, 140, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 244, 0.96));
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow:
    0 30px 80px rgba(20, 20, 20, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 24px;
  background: #0c0c0c;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #0c0c0c;
  aspect-ratio: 16 / 9;
}

.carousel-slide img,
.carousel-slide video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 52vw, 640px);
  object-fit: cover;
  object-position: center;
  border: 0;
  outline: 0;
  background: #0c0c0c;
}

.carousel-slide video {
  cursor: pointer;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.20));
}

.carousel-slide figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 620px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.carousel-slide figcaption strong {
  font-size: 1.05rem;
  color: #fff;
}

.carousel-slide figcaption span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow:
    0 16px 38px rgba(20, 20, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn-prev {
  left: 24px;
}

.carousel-btn-next {
  right: 24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding-top: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.16);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.carousel-dot.active {
  width: 24px;
  background: var(--accent);
}

.carousel-dot:hover {
  transform: scale(1.18);
}

.empty-gallery {
  padding: 28px;
  color: var(--muted);
}

.empty-gallery p {
  margin: 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(193, 141, 55, 0.22), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(70, 80, 160, 0.14), transparent 32%),
    linear-gradient(145deg, #0c0c0f, #151313 62%, #0d0d0f);
  color: #fff;
  padding: 84px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: start;
}

.contact-text p {
  color: #c7c7c7;
  margin-top: 24px;
  max-width: 520px;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 13px;
  color: #ebebeb;
  font-size: 0.95rem;
}

.contact-details span {
  color: #9d9d9d;
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-details a:hover {
  color: var(--accent);
}

form {
  position: relative;
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

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

label {
  display: grid;
  gap: 7px;
  color: #292929;
  font-weight: 800;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfbf8;
  color: var(--ink);
  min-height: 52px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: 0.18s ease;
  border-radius: 16px;
}

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

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.antispam {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.45;
  border-radius: 16px;
}

.notice.success {
  background: #ecf9ef;
  border: 1px solid #b8e3c1;
  color: #145c24;
}

.notice.error {
  background: #fff1f1;
  border: 1px solid #efb8b8;
  color: #8f1e1e;
}

.submit {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(135deg, #111111, #28231d);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent), #9b6a21);
  box-shadow: 0 18px 46px rgba(193, 141, 55, 0.28);
}

.small-note {
  color: #6b6b6b;
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 13px 0 0;
}

footer {
  background: var(--dark);
  color: #9b9b9b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  font-size: 0.86rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1020px) {
  .hero-grid,
  .section-title,
  .split-panel,
  .contact-layout,
  .gallery-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap {
    text-align: center;
  }

  .hero .hero-title,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .links {
    display: none;
  }

  .nav {
    justify-content: center;
  }

  .logo {
    position: static;
    transform: none;
  }
}

@media (max-width: 700px) {
  .page {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 86px;
  }

  .logo img {
    height: 64px;
  }

  .hero {
    padding: 52px 0 42px;
  }

  h1.hero-title,
  h2.hero-title,
  .hero .hero-title,
  .section-title h2.hero-title,
  .split-copy h2.hero-title,
  .contact-text h2.hero-title {
    font-size: clamp(1.18rem, 5.5vw, 1.75rem);
    line-height: 1.38;
    max-width: 100%;
  }

  h1.hero-title .sep,
  h2.hero-title .sep,
  .hero-title .sep {
    font-size: 0.22em;
    margin: 0 0.2em;
    transform: translateY(-0.2em);
  }

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

  section,
  .contact-section {
    padding: 58px 0;
  }

  .hero-media img,
  .split-photo img {
    min-height: 280px;
  }

  .service {
    min-height: auto;
  }

  form,
  .about-panel {
    padding: 24px;
  }

  .gallery-carousel {
    padding: 10px;
    border-radius: 22px;
  }

  .carousel-track-wrap,
  .carousel-slide {
    border-radius: 18px;
  }

  .carousel-slide {
    aspect-ratio: 4 / 5;
  }

  .carousel-slide img,
  .carousel-slide video {
    min-height: 360px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .carousel-btn-prev {
    left: 16px;
  }

  .carousel-btn-next {
    right: 16px;
  }

  .carousel-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px 14px;
    border-radius: 14px;
  }
}
