﻿:root {
  color-scheme: dark;
  font-family: 'Cormorant Garamond', serif;
  background: #060911;
  color: #f4f1e8;
  --bg-dark: #060911;
  --bg-panel: rgba(6, 9, 17, 0.84);
  --ink: #f4f1e8;
  --ink-soft: #d5d0c3;
  --ink-muted: #9b9688;
  --accent: #d0ae5a;
  --accent-soft: rgba(208, 174, 90, 0.35);
  --border-subtle: rgba(244, 241, 232, 0.14);
  --border-strong: rgba(244, 241, 232, 0.25);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  background: 
    radial-gradient(circle at 15% 15%, rgba(0, 0, 0, 0.20), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url('goya-bg.png') center center / cover fixed no-repeat,
    var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.landing-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0, rgba(0, 0, 0, 0.32), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(0, 0, 0, 0.45), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72));
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

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

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
}

.brand-mark img {
  width: auto;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'EB Garamond', serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding: 3rem 2.8rem;
  background: rgba(6, 9, 17, 0.88);
  border: 1px solid rgba(244, 241, 232, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-kicker {
  margin: 0 0 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 1.8rem auto 2.6rem;
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(208, 174, 90, 0.94), rgba(255, 215, 145, 0.88));
  color: #0b0b0b;
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}

main {
  display: grid;
  gap: 3.5rem;
  padding-top: 0rem;
}

.panel {
  position: relative;
}

.panel-inner {
  position: relative;
  z-index: 1;
  background: var(--bg-panel);
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  padding: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.about h2,
.services h2,
.visual h2,
.contact h2 {
  margin: 0;
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.02;
}

.about p,
.service-card p,
.visual-copy p,
.contact-copy p {
  margin-top: 1.4rem;
  max-width: 44rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.service-card {
  padding: 2rem;
  background: rgba(10, 13, 20, 0.90);
  border: 1px solid rgba(244, 241, 232, 0.08);
  border-radius: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 174, 90, 0.3);
}

.service-card h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: var(--ink);
}

.visual {
  padding: 0;
}

.visual-frame {
  position: relative;
  min-height: 380px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.08);
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.94), rgba(5, 6, 8, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjMzMCIgd2lkdGg9IjMzMCIgdmlld0JveD0iMCAwIDMzMCAzMzAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMCwxNS43MzMgMTU0LjI2LDE1My4xMSAxNzQuOTYsMTg1LjYzIEwzMzAsMzMuMDQ0IiBvcGFjaXR5PSIwLjEyIi8+PHBhdGggZD0iTTExMy4yLDE0MS44OSAxODAuMTcsMTA4LjA3IDEyNy40OCwyMDcuNjQgMzMzLjgsMjU4LjMzIiBvcGFjaXR5PSIwLjEyIi8+PC9nPjwvc3ZnPg==') center/contain no-repeat;
  opacity: 0.08;
  mix-blend-mode: color-dodge;
}

.visual-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: 3rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.contact-copy h2 {
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 241, 232, 0.08);
  background: rgba(6, 9, 17, 0.88);
  color: var(--ink);
  padding: 1rem 1rem;
  border-radius: 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(213, 208, 195, 0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(208, 174, 90, 0.45);
  box-shadow: 0 0 0 4px rgba(208, 174, 90, 0.08);
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: rgba(213, 208, 195, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .service-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 24px 18px 40px;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1.2rem;
  }

  .hero-content {
    padding: 2.2rem;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .visual-frame {
    min-height: 280px;
  }
}
