/* ========================================
   visitPanicale.com — Global Styles
   "Rosso Pomeriggio" Design System
   ======================================== */

/* Design Tokens */
:root {
  --terracotta:       #C4612A;
  --terracotta-hover: #A85020;
  --terracotta-light: #E8630A;
  --parchment:        #FDF5E4;
  --parchment-warm:   #FEF8E8;
  --parchment-page:   #FFFDF6;
  --gold:             #F0A840;
  --gold-border:      #F0D0A0;
  --gold-dark:        #C4A060;
  --ink:              #2C1A06;
  --ink-medium:       #5C3C18;
  --ink-light:        #7A5030;
  --lake-blue:        #2AAED8;
  --olive:            #4A6A18;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "DM Sans", "Helvetica Neue", sans-serif;

  --section-pad:  2rem 2.5rem;
  --card-radius:  4px;
  --max-width:    1400px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  background: var(--parchment-page);
  padding-top: 54px;
}

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

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

ul, ol { list-style: none; }

/* Typography */
h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
}

p {
  margin-bottom: 1rem;
}

/* Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-pad {
  padding: var(--section-pad);
}

/* Section Headers */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-eyebrow .eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terracotta);
}

.section-eyebrow span:not(.eyebrow-line) {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.section-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-medium);
  margin-bottom: 2.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 4rem 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 8.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: .7;
  transition: opacity .2s;
}

.footer-nav a:hover { opacity: 1; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-border);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: .5;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 4px; }

/* Selection */
::selection {
  background: var(--terracotta);
  color: white;
}

@media (max-width: 768px) {
  h1, .section-title { font-size: 36px; }
  h2 { font-size: 26px; }
  body { font-size: 15px; }
  .container { padding: 0 1.25rem; }
}
