* {
  box-sizing: border-box;
}

:root {
  --background: #f8f3ec;
  --paper: #fffdf9;
  --paper-soft: #fbf7f1;
  --text: #2f2621;
  --muted: #716860;
  --gold: #b9812e;
  --gold-dark: #986319;
  --gold-soft: rgba(185, 129, 46, .12);
  --line: rgba(75, 55, 41, .11);
  --line-strong: rgba(75, 55, 41, .18);
  --shadow: 0 18px 48px rgba(62, 43, 29, .08);
  --shadow-large: 0 32px 80px rgba(62, 43, 29, .11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.96), transparent 28%),
    linear-gradient(135deg, #fffdf9, var(--background));
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

.site-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 253, 249, .7);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .93);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
}

.brand-subtitle {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

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

.site-nav a {
  color: #514840;
  text-decoration: none;
  font-size: 13px;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid rgba(185,129,46,.45);
  border-radius: 8px;
  color: var(--gold-dark) !important;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(610px, 1.18fr);
  min-height: 560px;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px clamp(34px, 7vw, 92px);
  padding-right: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(185,129,46,.08), transparent 30%),
    linear-gradient(90deg, var(--paper) 0%, rgba(255,253,249,.96) 82%, rgba(255,253,249,.64) 100%);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 7vw, 104px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -4px;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-divider,
.contact-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(290px, 100%);
  margin-top: 26px;
  color: var(--gold);
}

.hero-divider span,
.contact-divider span {
  height: 1px;
  background: rgba(185,129,46,.45);
}

.hero-divider i,
.contact-divider i {
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,253,249,.58), transparent 24%),
    linear-gradient(0deg, rgba(30,23,18,.28), transparent 42%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: 54% center;
}

.hero-visual-overlay {
  position: absolute;
  z-index: 2;
  left: auto;
  right: 34px;
  bottom: 74px;
  width: min(420px, calc(100% - 68px));
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 15px;
  background: rgba(35,28,23,.48);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.hero-visual-overlay small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-visual-overlay strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
}

.contact-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 22px;
  width: min(1240px, calc(100% - 44px));
  margin: -26px auto 0;
}

.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,249,.96);
  box-shadow: var(--shadow-large);
}

.contact-form {
  padding: 30px;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.card-heading.compact {
  margin-bottom: 23px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 21px;
}

.card-heading p {
  margin: 0 0 4px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.card-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 17px;
}

.form-group label {
  color: #51483f;
  font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(255,255,255,.74);
  color: var(--text);
  outline: none;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.form-group input,
.form-group select {
  min-height: 47px;
  padding: 0 13px;
}

.form-group textarea {
  min-height: 140px;
  padding: 13px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(185,129,46,.72);
  background: white;
  box-shadow: 0 0 0 4px rgba(185,129,46,.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa098;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(220px, 305px) 1fr;
  gap: 22px;
  align-items: center;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-dark), #c38b35);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(185,129,46,.22);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(185,129,46,.28);
}

.form-footer p {
  margin: 0;
  color: #91877f;
  font-size: 11px;
  line-height: 1.55;
}

.form-footer p span {
  margin-right: 8px;
  color: var(--gold-dark);
}

.contact-card {
  overflow: hidden;
}

.contact-card-content {
  padding: 28px 27px 22px;
}

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

.contact-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: #4d443d;
  text-decoration: none;
  font-size: 14px;
}

.contact-list a span {
  color: var(--gold-dark);
  font-size: 18px;
}

.contact-divider {
  width: 100%;
  margin: 25px 0 20px;
}

.contact-message {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
}

.signature {
  margin-top: 16px;
  color: var(--gold-dark);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 27px;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.contact-card > img {
  width: 100%;
  height: 208px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.services-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 38px;
  width: min(1240px, calc(100% - 44px));
  margin: 58px auto 68px;
}

.services-intro {
  padding: 18px 8px;
}

.services-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.14;
  font-weight: 400;
}

.services-intro > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.service-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(22,18,15,.02), rgba(22,18,15,.78)),
    var(--service-image) center / cover no-repeat;
  color: white;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,10,.02) 5%, rgba(15,12,10,.14) 45%, rgba(15,12,10,.86) 100%);
  pointer-events: none;
}

.service-panel-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(255,255,255,.15), transparent 32%),
    linear-gradient(90deg, rgba(30,22,17,.12), transparent 50%);
  pointer-events: none;
}

.service-panel-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
}

.service-panel span {
  color: rgba(255,255,255,.72);
  font-family: var(--serif);
  font-size: 34px;
}

.service-panel h3 {
  margin: 12px 0 9px;
  color: white;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.service-panel p {
  max-width: 300px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.65;
}

.service-panel-photo {
  background-position: 52% 36%;
}

.service-panel-wedding {
  background-position: 69% 46%;
}

.service-panel-video {
  background-position: center 42%;
}

.site-footer {
  display: grid;
  grid-template-columns: .7fr 1.3fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 36px clamp(24px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.footer-brand span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
}

.footer-links a {
  color: #60564e;
  text-decoration: none;
  font-size: 12px;
}

@media (max-width: 1020px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 470px;
  }

  .hero-visual img {
    object-position: 47% center;
  }

  .hero-visual-overlay {
    right: 24px;
    bottom: 32px;
    width: min(390px, calc(100% - 48px));
  }

  .contact-layout {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-card > img {
    height: 100%;
    min-height: 340px;
  }

  .services-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 13px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .nav-contact {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero-copy {
    padding: 48px 23px 30px;
  }

  .hero-copy h1 {
    font-size: 60px;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

  .hero-visual img {
    object-position: 42% center;
  }

  .hero-visual-overlay {
    left: 18px;
    right: 18px;
    bottom: 24px;
    width: auto;
  }

  .contact-layout,
  .services-section {
    width: calc(100% - 22px);
  }

  .contact-form {
    padding: 22px 16px;
  }

  .form-grid-three,
  .form-grid-two,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card > img {
    min-height: 260px;
  }

  .services-section {
    margin-top: 42px;
  }

  .service-panels {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 210px;
  }



  .hero-visual img {
    object-position: 50% 36%;
  }

  .service-panel {
    min-height: 280px;
  }

  .service-panel-photo {
    background-position: 52% 32%;
  }

  .service-panel-wedding {
    background-position: 70% 45%;
  }

  .service-panel-video {
    background-position: center 42%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
