
:root {
  --navy: #071d2b;
  --blue: #0b2d42;
  --deep: #061620;
  --teal: #0f7896;
  --gold: #c7a35d;
  --sand: #f3efe6;
  --cream: #fbf8f1;
  --text: #162532;
  --muted: #607383;
  --white: #ffffff;
  --border: rgba(199,163,93,.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  background: rgba(7,29,43,.96);
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(199,163,93,.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .02em;
  color: var(--white);
}

.menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--white);
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 105px 0 115px;
  background:
    linear-gradient(115deg, rgba(6,22,32,.88), rgba(11,45,66,.68)),
    radial-gradient(circle at 82% 25%, rgba(199,163,93,.28), transparent 28%),
    linear-gradient(135deg, #061620 0%, #0b2d42 55%, #0f7896 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background:
    radial-gradient(ellipse at 25% 100%, rgba(255,255,255,.18), transparent 46%),
    radial-gradient(ellipse at 68% 100%, rgba(255,255,255,.13), transparent 52%);
  opacity: .9;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  max-width: 980px;
  margin: 0 0 24px;
  letter-spacing: -.03em;
}

.hero p {
  font-size: 22px;
  max-width: 850px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.90);
  font-family: Arial, Helvetica, sans-serif;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  padding: 14px 24px;
  border-radius: 2px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

.section {
  padding: 70px 0;
}

.section.light {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(243,239,230,.78));
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -.02em;
}

h3 {
  color: var(--navy);
  margin-top: 0;
  font-size: 22px;
}

p {
  font-size: 18px;
}

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

.card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(199,163,93,.24);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(7,29,43,.10);
}

.card h3::after,
.contact-box h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 0;
}

.list {
  padding-left: 20px;
  font-size: 17px;
}

.contact-box {
  background:
    linear-gradient(145deg, rgba(7,29,43,.98), rgba(11,45,66,.95));
  color: var(--white);
  border-radius: 18px;
  padding: 34px;
  border-left: 5px solid var(--gold);
  box-shadow: 0 18px 48px rgba(7,29,43,.18);
}

.contact-box h2,
.contact-box h3 {
  color: var(--white);
}

.contact-box a {
  color: #d7eef6;
}

.form label {
  display: block;
  font-weight: 800;
  margin-top: 15px;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(7,29,43,.18);
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(199,163,93,.45);
  border-color: var(--gold);
}

.form button {
  margin-top: 20px;
  border: 0;
  background: var(--gold);
  color: var(--deep);
  padding: 15px 24px;
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: 100%;
}

.footer {
  background: var(--deep);
  color: rgba(255,255,255,.88);
  padding: 34px 0;
  font-size: 14px;
  border-top: 1px solid rgba(199,163,93,.35);
}

.footer p {
  font-size: 14px;
  margin: 0;
}

.footer a {
  color: #d7eef6;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding: 72px 0 86px;
  }
}


.studio-fiorenzi-box {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.studio-fiorenzi-box h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.studio-fiorenzi-box p {
  margin: 10px 0;
}
